Lowes Store Search API
A GET request to our endpoint /api/getter/?platform="lowes_store"
will allow you to find nearby Lowes store locations and details based on a provided zip code.
Example
Here's an example showcasing how you can find Lowes stores near the zip code 99504:
1 |
|
Note
When using curl
, it is necessary to add the option -L to get the data back. This is because in some cases our server responds with a 301 and curl does not follow the redirect by default.
Query Parameters
As you can see in the example above, our endpoint needs the following query parameters:
Location
zipcode
Required
The zip code to search for nearby Lowes stores.
Other Required Parameters
platform
Required
Parameter specifies the scraping engine you wish to invoke. In this case, the value should be lowes_store.
api_key
Required
Your account's token—which can be obtained by signing up here.
Results
The response will include up to 10 nearby Lowes store locations. The following attributes are returned for each store:
Attributes Returned | Data Type | Information Represented |
---|---|---|
zipcode | string | Zip code of the store location |
street_address | string | Street address of the store |
city | string | City the store is located in |
store_name | string | Name of the specific store |
store_number | int | Unique store number |
zip_state | string | 2-letter state code of the store |
distance | float | Distance in miles from the provided zip code |
Response Example
Here's the response you can expect to receive for the request showcased above:
{
"success": true,
"zipcode": "99504",
"result_count": 10,
"results": [
{
"zipcode": "99504",
"street_address": "1200 NORTH MULDOON",
"city": "Anchorage",
"store_name": "N.E. Anchorage Lowe's",
"store_number": 2955,
"zip_state": "AK",
"distance": 0.9
},
{
"zipcode": "99503",
"street_address": "333 EAST TUDOR ROAD",
"city": "Anchorage",
"store_name": "Anchorage Lowe's",
"store_number": 289,
"zip_state": "AK",
"distance": 5.6
},
{
"zipcode": "99515",
"street_address": "10900 OLD SEWARD HIGHWAY",
"city": "Anchorage",
"store_name": "S. Anchorage Lowe's",
"store_number": 1633,
"zip_state": "AK",
"distance": 8.1
},
{
"zipcode": "99654",
"street_address": "2561 EAST SUN MOUNTAIN AVE",
"city": "Wasilla",
"store_name": "Wasilla Lowe's",
"store_number": 2512,
"zip_state": "AK",
"distance": 27.1
},
{
"zipcode": "99701",
"street_address": "425 MERHAR AVENUE",
"city": "Fairbanks",
"store_name": "Fairbanks Lowe's",
"store_number": 1985,
"zip_state": "AK",
"distance": 259.3
},
{
"zipcode": "98226",
"street_address": "1050 EAST SUNSET DRIVE",
"city": "Bellingham",
"store_name": "Bellingham Lowe's",
"store_number": 1631,
"zip_state": "WA",
"distance": 1363.9
},
{
"zipcode": "98273",
"street_address": "1717 FREEWAY DRIVE",
"city": "Mount Vernon",
"store_name": "Mount Vernon Lowe's",
"store_number": 35,
"zip_state": "WA",
"distance": 1384.9
},
{
"zipcode": "98223",
"street_address": "3300 169TH PLACE NE",
"city": "Arlington",
"store_name": "Smokey Point Lowe's",
"store_number": 61,
"zip_state": "WA",
"distance": 1404.7
},
{
"zipcode": "98201",
"street_address": "2505 PACIFIC AVENUE",
"city": "Everett",
"store_name": "Everett Lowe's",
"store_number": 149,
"zip_state": "WA",
"distance": 1413.6
},
{
"zipcode": "98383",
"street_address": "2221 NW MYHRE ROAD",
"city": "Silverdale",
"store_name": "Silverdale Lowe's",
"store_number": 2746,
"zip_state": "WA",
"distance": 1416.6
}
],
"remaining_credits": 712615
}
Request Cost
1 credit per request.
Support
If you want to add a parameter to our response, or have any question or feedback, please write to us at support@unwrangle.com