Endpoint Playground
Test Crawlora's Panera Bread Time Slots 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/time-slots?cafe_id=<cafe_id>&date=<date>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cafe_id | integer | Yes | Panera cafe id, from /panera/locations | |
| date | string | Yes | Date, YYYY-MM-DD |
{
"code": 200,
"msg": "OK",
"data": {
"cafe_id": 601447,
"date": "2026-09-10",
"open": "06:10",
"close": "21:00",
"windows": [
{
"start_time": "2026-09-10T06:10:00-05:00",
"end_time": "2026-09-10T06:15:00-05:00"
},
{
"start_time": "2026-09-10T06:15:00-05:00",
"end_time": "2026-09-10T06:20:00-05:00"
}
],
"count": 178,
"source_url": "https://www-api.panerabread.com/www-api/public/cafe/601447/time/slots/date/2026-09-10",
"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 available pickup/delivery order time-slot windows for one date, plus that date's overall open/close time. Unlike GET /panera/cafe's published storefront hours, this reflects live order-slot availability, not just when the cafe is open -- an empty windows list is a legitimate outcome (e.g. the cafe is closed that day), not an error. date must be YYYY-MM-DD, interpreted in the cafe's own local timezone.
{
"code": 200,
"msg": "OK",
"data": {
"cafe_id": 601447,
"date": "2026-09-10",
"open": "06:10",
"close": "21:00",
"windows": [
{
"start_time": "2026-09-10T06:10:00-05:00",
"end_time": "2026-09-10T06:15:00-05:00"
},
{
"start_time": "2026-09-10T06:15:00-05:00",
"end_time": "2026-09-10T06:20:00-05:00"
}
],
"count": 178,
"source_url": "https://www-api.panerabread.com/www-api/public/cafe/601447/time/slots/date/2026-09-10",
"fetched_at": "2026-09-03T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/panera/time-slots?cafe_id=<cafe_id>&date=<date>" \
-H "x-api-key: $CRAWLORA_API_KEY"