Endpoint Playground
Test Crawlora's Find nearby stored Starbucks stores 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/nearby?lat=<lat>&lon=<lon>&radius_m=<radius_m>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lat | number | Yes | Center latitude, from -90 through 90 | |
| lon | number | Yes | Center longitude, from -180 through 180 | |
| radius_m | integer | Yes | Search radius in meters, 1 through 50000 | |
| country | string | No | ISO-3166-1 alpha-2 country filter | |
| amenity | string | No | Amenity code filter, e.g. DT | |
| page | integer | No | Page number, defaults to 1 | |
| page_size | integer | No | Page size, defaults to 20 and maxes at 100 |
{
"code": 200,
"msg": "OK",
"data": {
"dataset": "starbucks-stores",
"items": [
{
"store_number": "101-54",
"name": "Columbia Center - 4th & Cherry",
"country": "US",
"latitude": 47.60422,
"longitude": -122.33078,
"distance_meters": 220.5
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "distance_asc"
}
}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 stored Starbucks stores within a radius of a point, nearest first, from dataset id `starbucks-stores`. lat, lon, and radius_m are required. Unlike the live /starbucks/stores endpoint (which caps at 50 near a point), this queries the full grid-tiled directory, so it can return every store in the radius. 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": {
"dataset": "starbucks-stores",
"items": [
{
"store_number": "101-54",
"name": "Columbia Center - 4th & Cherry",
"country": "US",
"latitude": 47.60422,
"longitude": -122.33078,
"distance_meters": 220.5
}
],
"page": 1,
"page_size": 20,
"total": 1,
"sort": "distance_asc"
}
}curl "https://api.crawlora.net/api/v1/datasets/starbucks-stores/nearby?lat=<lat>&lon=<lon>&radius_m=<radius_m>" \
-H "x-api-key: $CRAWLORA_API_KEY"