Endpoint Playground
Test Crawlora's Culver's Menu 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/menu?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Category slug from /culvers/categories |
{
"code": 200,
"msg": "OK",
"data": {
"category": "butterburgers",
"items": [
{
"item_id": "575957",
"name": "ButterBurger Cheese",
"slug": "butterburger-cheese",
"sort_order": 1,
"url": "https://www.culvers.com/menu/butterburgers/butterburger-cheese"
}
],
"count": 6,
"source_url": "https://www.culvers.com/menu/butterburgers",
"fetched_at": "2026-09-04T12: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 items in one Culver's menu category, each with name, description, image, and a link to Culver's nutrition guide. Category slugs come from GET /culvers/categories. Prices are not published on the national catalog -- Culver's only prices items once a specific restaurant is selected client-side, and no credential-free per-restaurant pricing source was found; see GET /culvers/item for full modifier/topping detail.
{
"code": 200,
"msg": "OK",
"data": {
"category": "butterburgers",
"items": [
{
"item_id": "575957",
"name": "ButterBurger Cheese",
"slug": "butterburger-cheese",
"sort_order": 1,
"url": "https://www.culvers.com/menu/butterburgers/butterburger-cheese"
}
],
"count": 6,
"source_url": "https://www.culvers.com/menu/butterburgers",
"fetched_at": "2026-09-04T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/culvers/menu?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"