Endpoint Playground
Test Crawlora's Nearby Starbucks Stores 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/starbucks/stores?market=us" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| place | string | No | Free-text city, address, or postal code, geocoded by Starbucks | |
| lat | number | No | Latitude, requires lng | |
| lng | number | No | Longitude, requires lat | |
| market | string | No | us | Starbucks country site to read. One of: us, ca. Defaults to us |
{
"code": 200,
"msg": "OK",
"data": {
"place": "Seattle, WA",
"place_not_found": false,
"result_capped": true,
"count": 50,
"source_url": "https://www.starbucks.com/apiproxy/v1/locations?place=Seattle%2C+WA",
"fetched_at": "2026-08-30T10:31:02Z",
"stores": [
{
"store_number": "101-54",
"id": "11311",
"name": "Columbia Center - 4th & Cherry",
"phone": "+1 206-447-9934",
"distance_miles": 0.1639,
"address": "701 Fifth Ave",
"city": "Seattle",
"state": "WA",
"postal_code": "98104",
"country": "US",
"latitude": 47.60422,
"longitude": -122.33078,
"time_zone": "GMT-07:00 America/Los_Angeles",
"ownership_type_code": "CO",
"open": false,
"is_open_24_hours": false,
"hours_status": "Closed today",
"mobile_ordering_availability": "NOT_READY",
"guest_ordering": true,
"amenities": [
{
"code": "16",
"name": "In Store"
},
{
"code": "XO",
"name": "Mobile Order and Pay"
}
],
"pick_up_options": [
{
"code": "16",
"name": "In store",
"available": false
}
],
"schedule": [
{
"day_of_week": "SUNDAY",
"hours": "Closed",
"open": false
},
{
"day_of_week": "MONDAY",
"hours": "5:00 AM to 6:00 PM",
"open": true
}
]
}
]
}
}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 Starbucks store locations near a point: store number, name, phone, full address, coordinates, weekly opening hours, amenities, and pick-up options. Either place, or both lat and lng, is required. place is free-text (city, address, or postal code) and is geocoded by Starbucks itself, so it works worldwide. market selects which Starbucks country site answers, one of us or ca, defaulting to us; this is not cosmetic even for stores, because the same store reports different operational data depending on the host. There is no filter parameter: Starbucks' own API accepts a features amenity filter but silently ignores it, so it is deliberately not offered here; filter on each store's returned amenities instead. A place Starbucks cannot resolve returns a well-formed empty result with place_not_found set to true rather than an error. The upstream returns at most 50 stores per request and supports no pagination; result_capped is true when that ceiling was reached. Store discovery works worldwide, but hours, amenities, and phone numbers are populated per market and may be absent outside the US and UK.
{
"code": 200,
"msg": "OK",
"data": {
"place": "Seattle, WA",
"place_not_found": false,
"result_capped": true,
"count": 50,
"source_url": "https://www.starbucks.com/apiproxy/v1/locations?place=Seattle%2C+WA",
"fetched_at": "2026-08-30T10:31:02Z",
"stores": [
{
"store_number": "101-54",
"id": "11311",
"name": "Columbia Center - 4th & Cherry",
"phone": "+1 206-447-9934",
"distance_miles": 0.1639,
"address": "701 Fifth Ave",
"city": "Seattle",
"state": "WA",
"postal_code": "98104",
"country": "US",
"latitude": 47.60422,
"longitude": -122.33078,
"time_zone": "GMT-07:00 America/Los_Angeles",
"ownership_type_code": "CO",
"open": false,
"is_open_24_hours": false,
"hours_status": "Closed today",
"mobile_ordering_availability": "NOT_READY",
"guest_ordering": true,
"amenities": [
{
"code": "16",
"name": "In Store"
},
{
"code": "XO",
"name": "Mobile Order and Pay"
}
],
"pick_up_options": [
{
"code": "16",
"name": "In store",
"available": false
}
],
"schedule": [
{
"day_of_week": "SUNDAY",
"hours": "Closed",
"open": false
},
{
"day_of_week": "MONDAY",
"hours": "5:00 AM to 6:00 PM",
"open": true
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/starbucks/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"