Endpoint Playground
Test Crawlora's Five Guys FAQ Categories 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/fiveguys/faq-categories?lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lang | string | No | en | Optional. Content language: en (default) or es. Category ids differ per language -- feed ids from a given language back into GET /fiveguys/faq with the same lang. |
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": 21,
"name": "Menu",
"slug": "menu",
"entry_count": 34
},
{
"id": 15,
"name": "Nutritional and Allergens",
"slug": "nutritional-and-allergens",
"entry_count": 8
}
],
"count": 17,
"source_url": "https://www.fiveguys.com/wp-json/wp/v2/faq_category?per_page=100&orderby=name&order=asc",
"fetched_at": "2026-09-05T12: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 every published Five Guys FAQ category with its id, name, slug, and entry count -- use an id here as GET /fiveguys/faq's category filter. Available in English (default) and Spanish via `lang`; ids differ between languages, so pass the same `lang` to both endpoints.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": 21,
"name": "Menu",
"slug": "menu",
"entry_count": 34
},
{
"id": 15,
"name": "Nutritional and Allergens",
"slug": "nutritional-and-allergens",
"entry_count": 8
}
],
"count": 17,
"source_url": "https://www.fiveguys.com/wp-json/wp/v2/faq_category?per_page=100&orderby=name&order=asc",
"fetched_at": "2026-09-05T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/fiveguys/faq-categories" \
-H "x-api-key: $CRAWLORA_API_KEY"