Endpoint Playground
Test Crawlora's Panera Bread Cafe 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/cafe?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,
"name": "Addison - W Lake St east of Rohlwing Rd",
"phone": "630-250-4952",
"street": "1600 West Lake Street",
"city": "Addison",
"state": "IL",
"postal_code": "60101",
"timezone": "America/Chicago",
"latitude": 41.948594,
"longitude": -88.026398,
"features": [
"hasDelivery",
"hasDineIn",
"hasEcommerceEnabled",
"hasInCafePickup",
"hasKiosk",
"hasPickup"
],
"fulfillment": [
{
"type": "delivery",
"available": true,
"open_now": true,
"lead_time_minutes": 20,
"hours": [
{
"day_of_week": "Monday",
"ranges": [
{
"open": "06:00",
"close": "21:00"
}
]
}
]
}
],
"upcoming_hours": [
{
"date": "2026-09-02",
"day_of_week": "Wednesday",
"open": "06:00",
"close": "21:00",
"closed": false
}
],
"open_now": true,
"available": true,
"source_url": "https://www-api.panerabread.com/www-api/public/cafe/details/601447",
"fetched_at": "2026-09-01T12: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 Panera Bread cafe's address, phone, coordinates, amenity flags, per-fulfillment-channel availability (dine-in, storefront/pickup, rapid pickup, drive-thru, curbside, delivery -- each with its own available/open-now/lead-time-minutes and weekly hours where Panera publishes them) and the published storefront hours for the next calendar week with concrete dates. Cafe ids come from GET /panera/locations. An unknown cafe id returns a 404.
{
"code": 200,
"msg": "OK",
"data": {
"cafe_id": 601447,
"name": "Addison - W Lake St east of Rohlwing Rd",
"phone": "630-250-4952",
"street": "1600 West Lake Street",
"city": "Addison",
"state": "IL",
"postal_code": "60101",
"timezone": "America/Chicago",
"latitude": 41.948594,
"longitude": -88.026398,
"features": [
"hasDelivery",
"hasDineIn",
"hasEcommerceEnabled",
"hasInCafePickup",
"hasKiosk",
"hasPickup"
],
"fulfillment": [
{
"type": "delivery",
"available": true,
"open_now": true,
"lead_time_minutes": 20,
"hours": [
{
"day_of_week": "Monday",
"ranges": [
{
"open": "06:00",
"close": "21:00"
}
]
}
]
}
],
"upcoming_hours": [
{
"date": "2026-09-02",
"day_of_week": "Wednesday",
"open": "06:00",
"close": "21:00",
"closed": false
}
],
"open_now": true,
"available": true,
"source_url": "https://www-api.panerabread.com/www-api/public/cafe/details/601447",
"fetched_at": "2026-09-01T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/panera/cafe?cafe_id=<cafe_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"