Endpoint Playground
Test Crawlora's Panera Bread Retired Products 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/retired-products?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": 650699,
"name": "Italian Steak & Mozz",
"description": "Tender, marinated sliced steak with melty fresh mozzarella, vine-ripened tomato, chopped basil, fresh arugula, salt and pepper, Italian dressing and garlic aioli drizzle on our Black Pepper Focaccia.",
"portion": "Whole",
"image_key": "italian-steak-and-mozz-sandwich-whole",
"availability_stage": "SEASONAL"
}
],
"count": 332,
"source_url": "https://www-api.panerabread.com/www-api/public/menu/retiredPlacards/version/109845",
"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 items no longer on the active menu, resolved through the given cafe's own version map -- either permanently retired (availability_stage RETIRED) or currently out of seasonal rotation (SEASONAL, may return). Each item carries its name, description, portion label and image key. Cafe ids come from GET /panera/locations.
{
"code": 200,
"msg": "OK",
"data": {
"cafe_id": 601447,
"items": [
{
"item_id": 650699,
"name": "Italian Steak & Mozz",
"description": "Tender, marinated sliced steak with melty fresh mozzarella, vine-ripened tomato, chopped basil, fresh arugula, salt and pepper, Italian dressing and garlic aioli drizzle on our Black Pepper Focaccia.",
"portion": "Whole",
"image_key": "italian-steak-and-mozz-sandwich-whole",
"availability_stage": "SEASONAL"
}
],
"count": 332,
"source_url": "https://www-api.panerabread.com/www-api/public/menu/retiredPlacards/version/109845",
"fetched_at": "2026-09-03T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/panera/retired-products?cafe_id=<cafe_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"