Starbucks API endpoint
Use Crawlora's Nearby Starbucks Stores API to extract supported public Starbucks data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/starbucks/storesReturns 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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| 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 Allowed values: us, ca | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/starbucks/stores?market=us" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- Works worldwide. `place` is geocoded by Starbucks, so cities outside the US resolve normally — confirmed against Seattle, London, Tokyo, Paris, München, São Paulo, Dubai, and Sydney. Postal codes usually work (`98104`, `10001`, `SW1A 1AA`), but Starbucks' geocoder does not resolve every one of them (`90210` does not); a failure is reported as `place_not_found`, never as an error. - The upstream returns at most **50 stores per request and supports no pagination**. `result_capped` is `true` when that ceiling was reached, meaning more stores may exist nearby that cannot be retrieved. Query around different coordinates for wider coverage. - **Three distinct outcomes, none of them errors.** Stores found (`count > 0`); a `place` that could not be geocoded (`place_not_found: true`, `count: 0`); and a `place` that geocoded fine but has no Starbucks nearby (`place_not_found: false`, `count: 0`, e.g. Utqiagvik, Alaska). The same distinction applies to a remote `lat`/`lng`. - Each store lists its `amenities` with Starbucks' own codes: `16` (In Store), `AS` (MOP ASAP + Scheduled Ordering), `BE` (Blonde Espresso), `CC` (Scanless Order and Pay), `CS` (Café Seating), `DR` (Redeem Rewards), `DT` (Drive-Thru), `EM` (Starbucks Evenings), `GO` (Starbucks Wi-Fi), `NB` (Nitro Cold Brew), `OS` (Outdoor Seating), `WA` (Oven-warmed Food), `WF` (Wireless Hot-Spot), `XO` (Mobile Order and Pay). - **Field coverage varies by market.** Store number, name, address, and coordinates are returned everywhere, but `schedule`, `amenities`, and `phone` are populated per market. Measured across all 50 results per market: United States 50/50 have a weekly schedule, amenities and phone; United Kingdom 49/50; France 47/50 have a schedule but no amenities and no phone; Japan 0/50 have a schedule, amenities, or phone, and every store reports `hours_status` of "Store hours aren't available". Do not read an empty `schedule` as a closed store. - `store_number` is Starbucks' own public store identifier and is what `/starbucks/menu` and `/starbucks/product` accept as `store_number`. - `ownership_type_code` distinguishes company-operated (`CO`) stores from licensed ones such as airport and grocery kiosks. - `mobile_ordering_availability` is a live readiness state (e.g. `READY`, `NOT_READY`), not a static capability — a store that supports mobile ordering still reports `NOT_READY` while closed. Use the `XO` amenity code for the static capability. - `distance_miles` is the distance from the searched point. Example response: ```json { "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 } ] } ] } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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
}
]
}
]
}
}Request schema
No body schema
Response schema
#/definitions/starbucks.storesResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | starbucks.StoreResponse | No | ||||
| data.count | integer | No | ||||
| data.fetched_at | string | No | ||||
| data.lat | number | No | ||||
| data.lng | number | No | ||||
| data.market | string | No | ||||
| data.place | string | No | ||||
| data.place_not_found | boolean | No | PlaceNotFound is true when Starbucks could not geocode Place at all. The upstream signals this with a distinct object shape rather than an empty list, so a genuine no-results answer stays distinguishable from parser drift. | |||
| data.result_capped | boolean | No | ResultCapped is true when the upstream returned its hard 50-result ceiling, meaning more stores may exist near this point that the upstream will not return under any pagination parameter. | |||
| data.source_url | string | No | ||||
| data.stores | array | No | ||||
| data.stores[].address | string | No | ||||
| data.stores[].amenities | array | No | Amenities are the store's features, each with Starbucks' own code and its human-readable name. | |||
| data.stores[].amenities[].code | string | No | ||||
| data.stores[].amenities[].name | string | No | ||||
| data.stores[].city | string | No | ||||
| data.stores[].country | string | No | ||||
| data.stores[].distance_miles | number | No | ||||
| data.stores[].guest_ordering | boolean | No | ||||
| data.stores[].hours_status | string | No | ||||
| data.stores[].id | string | No | ||||
| data.stores[].is_open_24_hours | boolean | No | ||||
| data.stores[].latitude | number | No | ||||
| data.stores[].longitude | number | No | ||||
| data.stores[].mobile_ordering_availability | string | No | MobileOrderingAvailability is the upstream's own enum-ish state for Mobile Order & Pay at this store, e.g. "READY" / "NOT_READY". It is a live readiness state, not a static capability -- a store that supports mobile ordering still reports NOT_READY while closed. Use the "XO" amenity code for the static capability. | |||
| data.stores[].name | string | No | ||||
| data.stores[].open | boolean | No | ||||
| data.stores[].open_status | string | No | ||||
| data.stores[].ownership_type_code | string | No | OwnershipTypeCode distinguishes company-operated ("CO") from licensed stores, which is why an airport or grocery-store kiosk behaves differently from a standalone café. | |||
| data.stores[].phone | string | No | ||||
| data.stores[].pick_up_options | array | No | PickUpOptions are the fulfillment modes the store supports, each with its own live availability flag. | |||
| data.stores[].pick_up_options[].available | boolean | No | ||||
| data.stores[].pick_up_options[].code | string | No | ||||
| data.stores[].pick_up_options[].name | string | No | ||||
| data.stores[].postal_code | string | No | ||||
| data.stores[].schedule | array | No | Schedule is the store's weekly opening hours, Sunday-first as the upstream returns them. | |||
| data.stores[].schedule[].day_of_week | string | No | ||||
| data.stores[].schedule[].holiday | string | No | ||||
| data.stores[].schedule[].hours | string | No | ||||
| data.stores[].schedule[].open | boolean | No | ||||
| data.stores[].state | string | No | ||||
| data.stores[].store_number | string | No | StoreNumber is Starbucks' own public store identifier, e.g. "101-54". ID is the locator's separate internal numeric id. | |||
| data.stores[].time_zone | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/starbucks/stores?market=us" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms