Endpoint Playground
Test Crawlora's Chick-fil-A Locations 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/locations" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| search | string | No | Free-text filter over restaurant names. Results are relevance-ranked when present. | |
| page | integer | No | 1-based page number (default 1) | |
| per_page | integer | No | Restaurants per page, 1-100 (default 20) |
{
"code": 200,
"msg": "OK",
"data": {
"locations": [
{
"id": 53696,
"slug": "branson-food-truck",
"name": "Branson Food Truck",
"state": "mo",
"page_url": "https://www.chick-fil-a.com/locations/mo/branson-food-truck",
"modified_at": "2026-08-30T08:41:48"
}
],
"pagination": {
"page": 1,
"per_page": 20,
"total": 2,
"total_pages": 1
},
"source_url": "https://www.chick-fil-a.com/wp-json/wp/v2/location?page=1&per_page=20&search=branson",
"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 page of Chick-fil-A's restaurant directory (3,467 restaurants at time of writing): each restaurant's id, slug, name, US state and its page URL. search filters by free text over restaurant names and is relevance-ranked; without it restaurants come back alphabetically so a caller can page through the whole directory deterministically. This index deliberately carries no address or hours -- Chick-fil-A does not expose them on the directory listing. Pass a slug from here to GET /chick-fil-a/location to get street address and opening hours for one restaurant.
{
"code": 200,
"msg": "OK",
"data": {
"locations": [
{
"id": 53696,
"slug": "branson-food-truck",
"name": "Branson Food Truck",
"state": "mo",
"page_url": "https://www.chick-fil-a.com/locations/mo/branson-food-truck",
"modified_at": "2026-08-30T08:41:48"
}
],
"pagination": {
"page": 1,
"per_page": 20,
"total": 2,
"total_pages": 1
},
"source_url": "https://www.chick-fil-a.com/wp-json/wp/v2/location?page=1&per_page=20&search=branson",
"fetched_at": "2026-08-30T13:39:35Z"
}
}curl "https://api.crawlora.net/api/v1/chick-fil-a/locations" \
-H "x-api-key: $CRAWLORA_API_KEY"