Endpoint Playground
Test Crawlora's Panera Bread Upsell Suggestions 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/upsell-suggestions?cafe_id=<cafe_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cafe_id | integer | Yes | Panera cafe id, from /panera/locations |
{
"code": 200,
"msg": "OK",
"data": {
"cafe_id": 601447,
"items": [
{
"item_id": 7392,
"item_name": "Bacon Turkey Bravo Sandwich on Thin Tom Basil - Retail - Half Portion",
"suggestions": [
{
"item_id": 801215,
"name": "Extra Turkey"
},
{
"item_id": 802834,
"name": "Extra Bacon"
}
]
}
],
"count": 513,
"source_url": "https://www-api.panerabread.com/www-api/public/menu/proteinupsell/601447/version/109943",
"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 Panera's own suggested add-ons per menu item (for example "Extra Turkey" and "Extra Bacon" for a Bacon Turkey Bravo sandwich). Item ids on this surface are in a separate id space from /panera/menu's item_id, but both the item and its suggestions carry their own resolved names, so no cross-reference is needed. Cafe ids come from GET /panera/locations.
{
"code": 200,
"msg": "OK",
"data": {
"cafe_id": 601447,
"items": [
{
"item_id": 7392,
"item_name": "Bacon Turkey Bravo Sandwich on Thin Tom Basil - Retail - Half Portion",
"suggestions": [
{
"item_id": 801215,
"name": "Extra Turkey"
},
{
"item_id": 802834,
"name": "Extra Bacon"
}
]
}
],
"count": 513,
"source_url": "https://www-api.panerabread.com/www-api/public/menu/proteinupsell/601447/version/109943",
"fetched_at": "2026-09-03T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/panera/upsell-suggestions?cafe_id=<cafe_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"