Endpoint Playground
Test Crawlora's Panera Bread Catering Delivery Info 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/catering-delivery-info?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": 606477,
"delivery_fee": 15,
"min_order_amount": 50,
"hours": [
{
"day_of_week": "Monday",
"ranges": [
{
"open": "06:00",
"close": "21:00"
}
]
},
{
"day_of_week": "Sunday",
"ranges": [
{
"open": "07:00",
"close": "21:00"
}
]
}
],
"lead_times": [
{
"min_order_amount": 0,
"lead_time_minutes": 120
},
{
"min_order_amount": 750,
"lead_time_minutes": 240,
"is_large_order_tier": true
}
],
"available_dates": [
{
"date": "2026-09-04",
"ranges": [
{
"open": "06:00",
"close": "21:00"
}
]
}
],
"source_url": "https://catering.panerabread.com/foundation-api/public/catering/cafe/606477/hours/0/DELIVERY/0",
"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 cafe's catering delivery fee, minimum order amount, weekly delivery hours, order-size lead-time tiers (e.g. a $750+ order needs a longer lead time than a smaller one), and upcoming available delivery dates with their order windows. This is Panera's catering delivery flow specifically -- catering pickup happens at the cafe itself, whose hours are already covered by GET /panera/cafe. Returns 404 if the cafe does not offer catering delivery.
{
"code": 200,
"msg": "OK",
"data": {
"cafe_id": 606477,
"delivery_fee": 15,
"min_order_amount": 50,
"hours": [
{
"day_of_week": "Monday",
"ranges": [
{
"open": "06:00",
"close": "21:00"
}
]
},
{
"day_of_week": "Sunday",
"ranges": [
{
"open": "07:00",
"close": "21:00"
}
]
}
],
"lead_times": [
{
"min_order_amount": 0,
"lead_time_minutes": 120
},
{
"min_order_amount": 750,
"lead_time_minutes": 240,
"is_large_order_tier": true
}
],
"available_dates": [
{
"date": "2026-09-04",
"ranges": [
{
"open": "06:00",
"close": "21:00"
}
]
}
],
"source_url": "https://catering.panerabread.com/foundation-api/public/catering/cafe/606477/hours/0/DELIVERY/0",
"fetched_at": "2026-09-03T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/panera/catering-delivery-info?cafe_id=<cafe_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"