Endpoint Playground
Test Crawlora's Best Buy Store Locator API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/bestbuy/stores?state=<state>&city=<city>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| state | string | Yes | Two-letter state/territory code | |
| city | string | Yes | City name |
{
"code": 200,
"msg": "OK",
"data": {
"state": "il",
"city": "Chicago",
"count": 3,
"source_url": "https://stores.bestbuy.com/il/chicago.html",
"fetched_at": "2026-08-15T10:00:00Z",
"stores": [
{
"name": "Best Buy",
"address": "2100 N Elston Ave",
"city": "Chicago",
"state": "IL",
"postal_code": "60614",
"country": "US",
"phone": "(773) 486-0142",
"latitude": 41.919002,
"longitude": -87.66959,
"rating": 4.21,
"review_count": 3614,
"hours": {
"Monday": "10:00-21:00",
"Sunday": "10:00-20:00"
},
"url": "https://stores.bestbuy.com/il/chicago/2100-n-elston-ave-814.html"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns Best Buy's physical store locations in one city (name, address, phone, coordinates, rating, hours), sourced from Best Buy's own SEO store directory. state is one of the 50 US state codes plus dc and pr: `al`, `ak`, `az`, `ar`, `ca`, `co`, `ct`, `de`, `dc`, `fl`, `ga`, `hi`, `id`, `il`, `in`, `ia`, `ks`, `ky`, `la`, `me`, `md`, `ma`, `mi`, `mn`, `ms`, `mo`, `mt`, `ne`, `nv`, `nh`, `nj`, `nm`, `ny`, `nc`, `nd`, `oh`, `ok`, `or`, `pa`, `pr`, `ri`, `sc`, `sd`, `tn`, `tx`, `ut`, `vt`, `va`, `wa`, `wv`, `wi`, `wy`. city is free text matched case-insensitively against that state's own directory (e.g. "Chicago").
{
"code": 200,
"msg": "OK",
"data": {
"state": "il",
"city": "Chicago",
"count": 3,
"source_url": "https://stores.bestbuy.com/il/chicago.html",
"fetched_at": "2026-08-15T10:00:00Z",
"stores": [
{
"name": "Best Buy",
"address": "2100 N Elston Ave",
"city": "Chicago",
"state": "IL",
"postal_code": "60614",
"country": "US",
"phone": "(773) 486-0142",
"latitude": 41.919002,
"longitude": -87.66959,
"rating": 4.21,
"review_count": 3614,
"hours": {
"Monday": "10:00-21:00",
"Sunday": "10:00-20:00"
},
"url": "https://stores.bestbuy.com/il/chicago/2100-n-elston-ave-814.html"
}
]
}
}curl "https://api.crawlora.net/api/v1/bestbuy/stores?state=<state>&city=<city>" \
-H "x-api-key: $CRAWLORA_API_KEY"