Endpoint Playground
Test Crawlora's Panera Bread Item 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/panera/item-detail?cafe_id=<cafe_id>&item_id=<item_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cafe_id | integer | Yes | Panera cafe id, from /panera/locations | |
| item_id | integer | Yes | Menu item id, from /panera/menu |
{
"code": 200,
"msg": "OK",
"data": {
"cafe_id": 601447,
"item_id": -11928,
"name": "Brisk Raspberry Tea",
"description": "A refreshing raspberry iced tea.",
"ingredient_statement": "Water, Sugar, Tea, Natural Flavor",
"sizes": [
{
"item_id": 646541,
"name": "Regular",
"price": 3.49,
"calories": 120,
"is_default": true
},
{
"item_id": 646542,
"name": "Large",
"price": 3.99,
"calories": 160
}
],
"nutrients": [
{
"name": "Calories",
"value": 120,
"unit": "Cal"
},
{
"name": "Caffeine",
"value": 25,
"unit": "mg"
}
],
"source_url": "https://www-api.panerabread.com/www-api/public/menu/placard/hash/daf73e8728d1f39973548edb64d3c4f7",
"fetched_at": "2026-09-03T12:00:00Z"
}
}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 menu item's full description, ingredient statement, a full per-serving nutrient panel (richer than GET /panera/menu's calories/caffeine-only surface), its allergen statement, and every selectable size with its own price and calories. item_id may be negative -- GET /panera/menu itself surfaces negative item ids for some items, and they resolve fine here. Returns 404 if Panera publishes no detail page for the given item id at this cafe.
{
"code": 200,
"msg": "OK",
"data": {
"cafe_id": 601447,
"item_id": -11928,
"name": "Brisk Raspberry Tea",
"description": "A refreshing raspberry iced tea.",
"ingredient_statement": "Water, Sugar, Tea, Natural Flavor",
"sizes": [
{
"item_id": 646541,
"name": "Regular",
"price": 3.49,
"calories": 120,
"is_default": true
},
{
"item_id": 646542,
"name": "Large",
"price": 3.99,
"calories": 160
}
],
"nutrients": [
{
"name": "Calories",
"value": 120,
"unit": "Cal"
},
{
"name": "Caffeine",
"value": 25,
"unit": "mg"
}
],
"source_url": "https://www-api.panerabread.com/www-api/public/menu/placard/hash/daf73e8728d1f39973548edb64d3c4f7",
"fetched_at": "2026-09-03T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/panera/item-detail?cafe_id=<cafe_id>&item_id=<item_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"