Endpoint Playground
Test Crawlora's Chick-fil-A Content Taxonomy 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/content-taxonomy?taxonomy=press_category" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| taxonomy | string | Yes | press_category | Which vocabulary. One of press_category, press_tag, story_category, story_tag, legal_category, downloadable_asset_category, campaign. |
| page | integer | No | 1-based page number (default 1) | |
| per_page | integer | No | Terms per page, 1-100 (default 20) |
{
"code": 200,
"msg": "OK",
"data": {
"taxonomy": "press_category",
"terms": [
{
"id": 570,
"name": "Community",
"slug": "community",
"item_count": 119,
"parent": 0
},
{
"id": 27,
"name": "Restaurant Openings",
"slug": "restaurant-openings",
"item_count": 37,
"parent": 0
}
],
"pagination": {
"page": 1,
"per_page": 20,
"total": 16,
"total_pages": 1
},
"source_url": "https://www.chick-fil-a.com/wp-json/wp/v2/press_category?page=1&per_page=20",
"fetched_at": "2026-09-01T09:12: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 a content taxonomy's terms, each with its id, name, slug, parent and the number of entries carrying it. Every id is a ready-to-use `category` or `tag` filter value on GET /chick-fil-a/content, which is what makes the editorial corpora navigable rather than only pageable. `taxonomy` selects the vocabulary: `press_category` (16 terms) and `press_tag` (96) classify press releases, `story_category` (9) and `story_tag` (74) classify blog stories, `legal_category` (8) and `downloadable_asset_category` (7) classify those corpora, and `campaign` (9) is applied across several at once. Terms are ordered by name.
{
"code": 200,
"msg": "OK",
"data": {
"taxonomy": "press_category",
"terms": [
{
"id": 570,
"name": "Community",
"slug": "community",
"item_count": 119,
"parent": 0
},
{
"id": 27,
"name": "Restaurant Openings",
"slug": "restaurant-openings",
"item_count": 37,
"parent": 0
}
],
"pagination": {
"page": 1,
"per_page": 20,
"total": 16,
"total_pages": 1
},
"source_url": "https://www.chick-fil-a.com/wp-json/wp/v2/press_category?page=1&per_page=20",
"fetched_at": "2026-09-01T09:12:00Z"
}
}curl "https://api.crawlora.net/api/v1/chick-fil-a/content-taxonomy?taxonomy=<taxonomy>" \
-H "x-api-key: $CRAWLORA_API_KEY"