Endpoint Playground
Test Crawlora's Culver's Flavor 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/flavor?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | Flavor slug from /culvers/calendar or /culvers/store |
{
"code": 200,
"msg": "OK",
"data": {
"flavor_id": 69,
"menu_item_id": 735,
"name": "Chocolate Covered Strawberry",
"slug": "chocolate-covered-strawberry",
"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",
"allergens": [
"Egg",
"Milk",
"Soy"
],
"ingredients": [
{
"title": "Vanilla Frozen Custard",
"details": "Milk (pasteurized), Cream, Skim Milk, Sugar, Corn Syrup, Egg Yolk (pasteurized), Guar Gum, Mono and Diglycerides, Locust Bean Gum, Carrageenan, Natural and Artificial Vanilla Flavor. CONTAINS MILK, EGG"
}
],
"categories": [
"Chocolate",
"Fruit",
"Vanilla"
],
"nutrition_url": "https://restaurant.nutritionix.com/culvers/label/modifier/150095",
"source_url": "https://www.culvers.com/flavor-of-the-day/chocolate-covered-strawberry",
"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 one Fresh Frozen Custard flavor's full detail, including its declared allergens, a component-by-component ingredient breakdown, and Culver's own flavor-category labels. slug comes from GET /culvers/calendar (flavors[].slug) or GET /culvers/store (flavors_of_the_day[].slug).
{
"code": 200,
"msg": "OK",
"data": {
"flavor_id": 69,
"menu_item_id": 735,
"name": "Chocolate Covered Strawberry",
"slug": "chocolate-covered-strawberry",
"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",
"allergens": [
"Egg",
"Milk",
"Soy"
],
"ingredients": [
{
"title": "Vanilla Frozen Custard",
"details": "Milk (pasteurized), Cream, Skim Milk, Sugar, Corn Syrup, Egg Yolk (pasteurized), Guar Gum, Mono and Diglycerides, Locust Bean Gum, Carrageenan, Natural and Artificial Vanilla Flavor. CONTAINS MILK, EGG"
}
],
"categories": [
"Chocolate",
"Fruit",
"Vanilla"
],
"nutrition_url": "https://restaurant.nutritionix.com/culvers/label/modifier/150095",
"source_url": "https://www.culvers.com/flavor-of-the-day/chocolate-covered-strawberry",
"fetched_at": "2026-09-05T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/culvers/flavor?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"