Endpoint Playground
Test Crawlora's Starbucks Product Detail 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/product/<product_number>/hot?market=us" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| product_number (path) | string | Yes | Starbucks numeric product id | |
| form (path) | string | Yes | hot | Product form. One of: hot, iced, single, packaged, whole-bean, via |
| store_number | string | No | Starbucks store number to scope availability to, e.g. 101-54 | |
| market | string | No | us | Starbucks country site to read. One of: us, ca. Defaults to us |
{
"code": 200,
"msg": "OK",
"data": {
"product_number": "418",
"form": "hot",
"name": "Pumpkin Spice Latte",
"description": "Our signature Espresso Roast and steamed milk with the celebrated flavor combination of pumpkin, cinnamon, nutmeg and clove. Enjoy it topped with whipped cream and real pumpkin-pie spices.",
"product_type": "beverages",
"image_url": "https://cloudassets.starbucks.com/is/image/sbuxcorp/PumpkinSpiceLatteV1",
"in_catalog": true,
"star_cost": 200,
"options": [
{
"name": "Milk"
},
{
"name": "Flavors"
}
],
"sizes": [
{
"size_code": "Short",
"sku": "183885",
"nutrition": {
"serving_size": "8 fl oz",
"calories": "210",
"calories_from_fat": "80",
"facts": [
{
"name": "Total Fat",
"value": "9 g",
"unit_of_measure": "g",
"daily_percent_value": "11%",
"subfacts": [
{
"name": "Saturated Fat",
"value": "5 g",
"unit_of_measure": "g",
"daily_percent_value": "25%"
},
{
"name": "Trans Fat",
"value": "0 g",
"unit_of_measure": "g"
}
]
},
{
"name": "Caffeine",
"value": "150 mg",
"unit_of_measure": "mg"
}
]
}
}
],
"source_url": "https://www.starbucks.com/apiproxy/v1/ordering/418/hot",
"fetched_at": "2026-08-30T10:31:11Z"
}
}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 Starbucks product's full detail: name, description, product type, image, Rewards star cost, customization options, and every size with its own nutrition panel (serving size, calories, calories from fat, and per-fact values for total fat with saturated and trans fat subfacts, cholesterol, sodium, total carbohydrates, protein, and caffeine). product_number is the numeric id from a /starbucks/menu result or a product page URL. form is that product's form; allowed values are hot, iced, single, packaged, whole-bean, and via. store_number optionally scopes availability to one store. Starbucks does not expose dollar pricing on this surface, so no price is returned; star_cost is the Rewards star cost. market selects which country catalog to resolve against, one of us or ca, defaulting to us. Each size also carries its default_recipe, the standard build, which is the required starting point for the /starbucks/product/{product_number}/{form}/nutrition endpoint. An unknown product number, or a form that product is not sold in, returns not found.
{
"code": 200,
"msg": "OK",
"data": {
"product_number": "418",
"form": "hot",
"name": "Pumpkin Spice Latte",
"description": "Our signature Espresso Roast and steamed milk with the celebrated flavor combination of pumpkin, cinnamon, nutmeg and clove. Enjoy it topped with whipped cream and real pumpkin-pie spices.",
"product_type": "beverages",
"image_url": "https://cloudassets.starbucks.com/is/image/sbuxcorp/PumpkinSpiceLatteV1",
"in_catalog": true,
"star_cost": 200,
"options": [
{
"name": "Milk"
},
{
"name": "Flavors"
}
],
"sizes": [
{
"size_code": "Short",
"sku": "183885",
"nutrition": {
"serving_size": "8 fl oz",
"calories": "210",
"calories_from_fat": "80",
"facts": [
{
"name": "Total Fat",
"value": "9 g",
"unit_of_measure": "g",
"daily_percent_value": "11%",
"subfacts": [
{
"name": "Saturated Fat",
"value": "5 g",
"unit_of_measure": "g",
"daily_percent_value": "25%"
},
{
"name": "Trans Fat",
"value": "0 g",
"unit_of_measure": "g"
}
]
},
{
"name": "Caffeine",
"value": "150 mg",
"unit_of_measure": "mg"
}
]
}
}
],
"source_url": "https://www.starbucks.com/apiproxy/v1/ordering/418/hot",
"fetched_at": "2026-08-30T10:31:11Z"
}
}curl "https://api.crawlora.net/api/v1/starbucks/product/<product_number>/<form>" \
-H "x-api-key: $CRAWLORA_API_KEY"