Endpoint Playground
Test Crawlora's Five Guys Nutrition Guide 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/nutrition" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"pdf_url": "https://www.fiveguys.com/wp-content/uploads/2026/09/Five-Guys-US-Nutrition-Allergen-Guide-English-September-2026.pdf",
"page_url": "https://www.fiveguys.com/nutritional-allergy-information/",
"link_text": "View Nutrition & Allergen Guide",
"content_type": "application/pdf",
"size_bytes": 172740,
"last_modified": "2026-09-02T14:06:41Z",
"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.
Resolves the live location of Five Guys' current dated nutrition & allergen guide PDF (calories, full macro nutrition and allergen data per item) directly from fiveguys.com -- the guide's own file path changes when Five Guys republishes it (observed monthly), so this endpoint always discovers the current link rather than returning a fixed one. Returns the PDF's direct download URL plus best-effort size and last-modified metadata read from the PDF's own response headers. This endpoint returns metadata and a link to the guide, not its table parsed into structured fields -- pair it with GET /fiveguys/menu for structured per-item calories.
{
"code": 200,
"msg": "OK",
"data": {
"pdf_url": "https://www.fiveguys.com/wp-content/uploads/2026/09/Five-Guys-US-Nutrition-Allergen-Guide-English-September-2026.pdf",
"page_url": "https://www.fiveguys.com/nutritional-allergy-information/",
"link_text": "View Nutrition & Allergen Guide",
"content_type": "application/pdf",
"size_bytes": 172740,
"last_modified": "2026-09-02T14:06:41Z",
"fetched_at": "2026-09-05T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/fiveguys/nutrition" \
-H "x-api-key: $CRAWLORA_API_KEY"