Endpoint Playground
Test Crawlora's Five Guys 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/fiveguys/faq?lang=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| search | string | No | Optional. Free-text filter over question and answer text. | |
| category | string | No | Optional. Comma-separated faq_category term ids, from GET /fiveguys/faq-categories. | |
| page | integer | No | Optional. 1-based page number, default 1. | |
| per_page | integer | No | Optional. Entries per page, 1-100, default 20. | |
| lang | string | No | en | Optional. Content language: en (default) or es. |
{
"code": 200,
"msg": "OK",
"data": {
"entries": [
{
"id": 4817,
"slug": "im-writing-a-story-about-five-guys-who-should-i-contact",
"question": "I'm writing a story about Five Guys. Who should I contact?",
"answer": "Please direct media inquiries to External Communications Specialist Christine Cube at press@fiveguys.com.",
"answer_html": "Please direct media inquiries to External Communications Specialist Christine Cube at <a href=\"mailto:press@fiveguys.com\"><strong>press@fiveguys.com</strong></a>.",
"categories": [
{
"id": 132,
"name": "Media Relations",
"slug": "media-relations"
}
],
"page_url": "https://www.fiveguys.com/?faq=im-writing-a-story-about-five-guys-who-should-i-contact",
"modified_at": "2026-06-30T20:29:34Z"
}
],
"pagination": {
"page": 1,
"per_page": 20,
"total": 142,
"total_pages": 8
},
"source_url": "https://www.fiveguys.com/wp-json/wp/v2/faq?page=1&per_page=20",
"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 one page of Five Guys' published customer FAQ corpus -- 142 entries across 17 categories (Menu, Nutritional and Allergens, Ordering, Gift Card, Careers, Franchise, App, Company, The Crew, and others), filterable by category id and free text, in English (default) or Spanish via `lang`. Get valid category values from GET /fiveguys/faq-categories using the same `lang` -- category ids are language-specific.
{
"code": 200,
"msg": "OK",
"data": {
"entries": [
{
"id": 4817,
"slug": "im-writing-a-story-about-five-guys-who-should-i-contact",
"question": "I'm writing a story about Five Guys. Who should I contact?",
"answer": "Please direct media inquiries to External Communications Specialist Christine Cube at press@fiveguys.com.",
"answer_html": "Please direct media inquiries to External Communications Specialist Christine Cube at <a href=\"mailto:press@fiveguys.com\"><strong>press@fiveguys.com</strong></a>.",
"categories": [
{
"id": 132,
"name": "Media Relations",
"slug": "media-relations"
}
],
"page_url": "https://www.fiveguys.com/?faq=im-writing-a-story-about-five-guys-who-should-i-contact",
"modified_at": "2026-06-30T20:29:34Z"
}
],
"pagination": {
"page": 1,
"per_page": 20,
"total": 142,
"total_pages": 8
},
"source_url": "https://www.fiveguys.com/wp-json/wp/v2/faq?page=1&per_page=20",
"fetched_at": "2026-09-05T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/fiveguys/faq" \
-H "x-api-key: $CRAWLORA_API_KEY"