Endpoint Playground
Test Crawlora's Get a stored Starbucks store API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/starbucks-stores/items/<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_number (path) | string | Yes | Starbucks store number, e.g. 101-54 |
{
"code": 200,
"msg": "OK",
"data": {
"store_number": "101-54",
"name": "Columbia Center - 4th & Cherry",
"phone": "+1 206-447-9934",
"address": "701 Fifth Ave",
"city": "Seattle",
"state": "WA",
"postal_code": "98104",
"country": "US",
"latitude": 47.60422,
"longitude": -122.33078,
"amenities": [
"16",
"XO",
"DT"
],
"market": "us"
}
}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 one stored Starbucks store by its store number (e.g. `101-54`) from dataset id `starbucks-stores`. `country` is the store's true country while `market` is crawl provenance. Hours (`schedule`) and `amenities` may be empty for stores outside the US, Canada, Europe, and the Gulf; an empty schedule means "not published for this market", not "closed". Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"store_number": "101-54",
"name": "Columbia Center - 4th & Cherry",
"phone": "+1 206-447-9934",
"address": "701 Fifth Ave",
"city": "Seattle",
"state": "WA",
"postal_code": "98104",
"country": "US",
"latitude": 47.60422,
"longitude": -122.33078,
"amenities": [
"16",
"XO",
"DT"
],
"market": "us"
}
}curl "https://api.crawlora.net/api/v1/datasets/starbucks-stores/items/<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"