Endpoint Playground
Test Crawlora's Chick-fil-A Location 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/chick-fil-a/location" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | integer | No | Numeric WordPress post id. Supply either id or slug, not both. | |
| slug | string | No | Restaurant slug, e.g. from a directory response. Supply either id or slug, not both. |
{
"code": 200,
"msg": "OK",
"data": {
"id": 53696,
"slug": "branson-food-truck",
"name": "Branson Food Truck",
"address": {
"street": "291 Sunrise Dr",
"city": "Branson",
"state": "MO",
"postal_code": "65616",
"country": "US"
},
"opening_hours": [
{
"day_of_week": "Monday",
"closed": true
},
{
"day_of_week": "Tuesday",
"closed": true
}
],
"serves_cuisine": "American as well as Chicken Sandwiches or Chicken",
"image_url": "https://static.cfacdn.com/photos/restaurants/07013/large.jpg",
"page_url": "https://www.chick-fil-a.com/locations/mo/branson-food-truck",
"source_url": "https://www.chick-fil-a.com/wp-json/wp/v2/location?per_page=1&slug=branson-food-truck",
"fetched_at": "2026-08-30T13:39:35Z"
}
}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 Chick-fil-A restaurant's street address, opening hours, cuisine description and photo, selected by either its numeric id or its slug (supply exactly one of the two -- passing both is rejected). opening_hours carries one entry per day; a day Chick-fil-A publishes as closed (notably every Sunday, and every day for a seasonal or food-truck location that is not currently operating) comes back with closed=true and empty opens/closes rather than a placeholder time. This response carries a postal address but no latitude/longitude -- Chick-fil-A does not publish coordinates for its restaurants, and this endpoint does not synthesize them.
{
"code": 200,
"msg": "OK",
"data": {
"id": 53696,
"slug": "branson-food-truck",
"name": "Branson Food Truck",
"address": {
"street": "291 Sunrise Dr",
"city": "Branson",
"state": "MO",
"postal_code": "65616",
"country": "US"
},
"opening_hours": [
{
"day_of_week": "Monday",
"closed": true
},
{
"day_of_week": "Tuesday",
"closed": true
}
],
"serves_cuisine": "American as well as Chicken Sandwiches or Chicken",
"image_url": "https://static.cfacdn.com/photos/restaurants/07013/large.jpg",
"page_url": "https://www.chick-fil-a.com/locations/mo/branson-food-truck",
"source_url": "https://www.chick-fil-a.com/wp-json/wp/v2/location?per_page=1&slug=branson-food-truck",
"fetched_at": "2026-08-30T13:39:35Z"
}
}curl "https://api.crawlora.net/api/v1/chick-fil-a/location" \
-H "x-api-key: $CRAWLORA_API_KEY"