Endpoint Playground
Test Crawlora's Culver's Store 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/store?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": "974",
"restaurant_number": "1001",
"name": "Culver's of Ann Arbor, MI - Lohr Rd",
"slug": "ann-arbor-mi-lohr-rd",
"phone_number": "(734) 821-0060",
"address": {
"line1": "3015 Lohr Rd",
"city": "Ann Arbor",
"state": "MI",
"postal_code": "48108",
"country": "US"
},
"latitude": 42.242039,
"longitude": -83.764565,
"is_open_now": true,
"is_temporarily_closed": false,
"handoff_options": [
"Pickup",
"Curbside"
],
"hours": {
"dine_in": [
{
"day_of_week": "MONDAY",
"opens": "10:00",
"closes": "22:00"
}
]
},
"flavors_of_the_day": [
{
"name": "Mint Cookie",
"slug": "mint-cookie",
"date": "2026-09-04"
}
],
"online_order_url": "https://order.culvers.com/menu/ann-arbor-mi-lohr-rd",
"source_url": "https://www.culvers.com/restaurants/ann-arbor-mi-lohr-rd",
"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 one Culver's restaurant's address, phone, coordinates, open/closed status, fulfillment hours, handoff options, online-order link, and today's flavor(s) of the day. slug comes from GET /culvers/directory.
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_id": "974",
"restaurant_number": "1001",
"name": "Culver's of Ann Arbor, MI - Lohr Rd",
"slug": "ann-arbor-mi-lohr-rd",
"phone_number": "(734) 821-0060",
"address": {
"line1": "3015 Lohr Rd",
"city": "Ann Arbor",
"state": "MI",
"postal_code": "48108",
"country": "US"
},
"latitude": 42.242039,
"longitude": -83.764565,
"is_open_now": true,
"is_temporarily_closed": false,
"handoff_options": [
"Pickup",
"Curbside"
],
"hours": {
"dine_in": [
{
"day_of_week": "MONDAY",
"opens": "10:00",
"closes": "22:00"
}
]
},
"flavors_of_the_day": [
{
"name": "Mint Cookie",
"slug": "mint-cookie",
"date": "2026-09-04"
}
],
"online_order_url": "https://order.culvers.com/menu/ann-arbor-mi-lohr-rd",
"source_url": "https://www.culvers.com/restaurants/ann-arbor-mi-lohr-rd",
"fetched_at": "2026-09-04T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/culvers/store?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"