Endpoint Playground
Test Crawlora's Chick-fil-A FAQ 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/faq" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| search | string | No | Free-text filter over question and answer text. Results are relevance-ranked when present. | |
| category | string | No | Comma-separated faq_category term ids, up to 20, from any prior response's categories[].id | |
| page | integer | No | 1-based page number (default 1) | |
| per_page | integer | No | Entries per page, 1-100 (default 20) |
{
"code": 200,
"msg": "OK",
"data": {
"entries": [
{
"id": 41266,
"slug": "delivery-how-it-works",
"question": "How does Chick-fil-A Delivery® work?",
"answer": "Order through the Chick-fil-A App or chick-fil-a.com.",
"answer_html": "<p>Order through the <a href=\"/app\">Chick-fil-A App</a> or chick-fil-a.com.</p>",
"categories": [
{
"id": 58,
"name": "Chick-fil-A Delivery Support FAQS",
"slug": "delivery-support"
}
],
"page_url": "https://www.chick-fil-a.com/faq/delivery-how-it-works",
"modified_at": "2026-08-29T12:00:00"
}
],
"pagination": {
"page": 1,
"per_page": 20,
"total": 522,
"total_pages": 27
},
"source_url": "https://www.chick-fil-a.com/wp-json/wp/v2/faq?page=1&per_page=20",
"fetched_at": "2026-08-30T14:05: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 page of Chick-fil-A's published customer FAQ corpus (522 entries at time of writing) across 30 categories -- Chick-fil-A One membership, points and rewards, digital ordering and payment, delivery support, sweepstakes terms, and more. Each entry carries the question, the answer as plain text, the answer's original HTML (a fair number of answers use links, lists and tables that plain text loses), and its resolved categories. Every categories[].id is a ready-to-use value for the category filter. search matches over question and answer text and is relevance-ranked; without it entries come back alphabetically so a caller can page through the whole corpus deterministically.
{
"code": 200,
"msg": "OK",
"data": {
"entries": [
{
"id": 41266,
"slug": "delivery-how-it-works",
"question": "How does Chick-fil-A Delivery® work?",
"answer": "Order through the Chick-fil-A App or chick-fil-a.com.",
"answer_html": "<p>Order through the <a href=\"/app\">Chick-fil-A App</a> or chick-fil-a.com.</p>",
"categories": [
{
"id": 58,
"name": "Chick-fil-A Delivery Support FAQS",
"slug": "delivery-support"
}
],
"page_url": "https://www.chick-fil-a.com/faq/delivery-how-it-works",
"modified_at": "2026-08-29T12:00:00"
}
],
"pagination": {
"page": 1,
"per_page": 20,
"total": 522,
"total_pages": 27
},
"source_url": "https://www.chick-fil-a.com/wp-json/wp/v2/faq?page=1&per_page=20",
"fetched_at": "2026-08-30T14:05:00Z"
}
}curl "https://api.crawlora.net/api/v1/chick-fil-a/faq" \
-H "x-api-key: $CRAWLORA_API_KEY"