Endpoint Playground
Test Crawlora's Culver's Restaurant Calendar 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/culvers/calendar?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | Restaurant slug from /culvers/directory |
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": 11,
"name": "Culver's of Waunakee, WI - E Main St",
"slug": "waunakee",
"start_date": "2026-09-01",
"end_date": "2026-10-31",
"flavors": [
{
"menu_item_id": 69,
"name": "Chocolate Covered Strawberry",
"slug": "chocolate-covered-strawberry",
"date": "2026-09-01",
"description": "Our creamy Vanilla Fresh Frozen Custard complemented with plump strawberries and novelty chocolate.",
"image_url": "https://cdn.culvers.com/menu-item-detail/img-Chocolate-Covered-Strawberry1.png"
}
],
"soups": [
{
"menu_item_id": 182,
"name": "George's® Chili",
"slug": "georges-chili",
"date": "2026-09-01",
"description": "A hearty, medium-spicy chili con carne.",
"image_url": "https://cdn.culvers.com/menu/images/item/sides/chili.png"
}
],
"flavor_count": 61,
"soup_count": 133,
"source_url": "https://www.culvers.com/restaurants/waunakee",
"fetched_at": "2026-09-05T12: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 the full published schedule for one Culver's restaurant: the flavor of the day for every upcoming calendar date, plus the soups served on each date. Culver's publishes roughly a two-month forward window, and the schedule is genuinely per-restaurant -- two restaurants on the same date routinely feature different soups. slug comes from GET /culvers/directory. GET /culvers/store returns only today's and tomorrow's flavor; use this endpoint for the whole calendar.
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": 11,
"name": "Culver's of Waunakee, WI - E Main St",
"slug": "waunakee",
"start_date": "2026-09-01",
"end_date": "2026-10-31",
"flavors": [
{
"menu_item_id": 69,
"name": "Chocolate Covered Strawberry",
"slug": "chocolate-covered-strawberry",
"date": "2026-09-01",
"description": "Our creamy Vanilla Fresh Frozen Custard complemented with plump strawberries and novelty chocolate.",
"image_url": "https://cdn.culvers.com/menu-item-detail/img-Chocolate-Covered-Strawberry1.png"
}
],
"soups": [
{
"menu_item_id": 182,
"name": "George's® Chili",
"slug": "georges-chili",
"date": "2026-09-01",
"description": "A hearty, medium-spicy chili con carne.",
"image_url": "https://cdn.culvers.com/menu/images/item/sides/chili.png"
}
],
"flavor_count": 61,
"soup_count": 133,
"source_url": "https://www.culvers.com/restaurants/waunakee",
"fetched_at": "2026-09-05T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/culvers/calendar?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"