- Previous: Reviews API
- Up: Product Lookup API
- Next: Trending API
Store Locator API
Store Locator API helps locate nearest Walmart Stores via API. It lets users search for stores by latitude and longitude, by zip code and by city.
Example Queries
Nearest walmart stores for latitude 29.735577 and longitude -95.511747 , XML Response
http://api.walmartlabs.com/v1/stores?apiKey={apiKey}&lon=-95.511747&lat=29.735577&format=xml
Walmart stores in the city of Houston, JSON response
http://api.walmartlabs.com/v1/stores?apiKey={apiKey}&city=HOUSTON&format=json
Walmart stores in the zip 77063
http://api.walmartlabs.com/v1/stores?apiKey={apiKey}&zip=77063&format=json
Formats
xml, json
Query Parameters
Param Name | Description | Required/Optional |
---|---|---|
apiKey | Your API access key. | Required |
format | Type of response required, allowed values [json, xml]. Default is json. | Optional |
lat | latitude | Optional |
lon | longitude | Optional |
city | city | Optional |
zip | zip | Optional |
To play with the API, please checkout the I/O Docs.
Sample Response
[ { no: 2066, name: "WM Supercenter", country: "US", coordinates: [-95.511747,29.735577], streetAddress: "2727 DUNVALE RD", city: "HOUSTON", stateProvCode: "TX", zip: "77063", phoneNumber: "007139772099", sundayOpen: true, timezone: "CST" }, { no: 3584, name: "WM Supercenter", country: "US", coordinates: [-95.46705,29.72314], streetAddress: "5405 SOUTH RICE AVENUE", city: "HOUSTON", stateProvCode: "TX", zip: "77081", phoneNumber: "000000000000", sundayOpen: true, timezone: "CST" }, { no: 5094, name: "WM Neighborhood Market - SUPERMARKET", country: "US", coordinates: [-95.495428,29.674436], streetAddress: "9700 HILLCROFT ST", city: "HOUSTON", stateProvCode: "TX", zip: "77096", phoneNumber: "007132837186", sundayOpen: true, timezone: "CST" } ]
- Previous: Reviews API
- Up: Product Lookup API
- Next: Trending API