Endpoint Playground
Test Crawlora's Popeyes Menu 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/popeyes/menu?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Popeyes' numeric store id, from /popeyes/locations |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "14156",
"currency": "USD",
"categories": [
{
"id": "c17aefeb-aabe-4c21-ae57-137eb724f565",
"name": "Limited Time Items",
"items": [
{
"id": "item_103182",
"type": "ITEM",
"name": "Cheese Bites",
"image_url": "https://cdn.sanity.io/images/czqk28jt/prod_plk_us/5030d73a5159ee07173fd5de0495fe9d089513c3-888x570.png",
"price": {
"default_cents": 399,
"default": 3.99,
"min_cents": 199,
"min": 1.99,
"max_cents": 399,
"max": 3.99
}
}
]
}
],
"item_count": 98,
"source_url": "https://czqk28jt.apicdn.sanity.io/v1/graphql/prod_plk_us/default",
"fetched_at": "2026-09-02T00: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 restaurant's menu grouped into categories (e.g. "Big Box", "Chicken Wraps"). Every entry is an item, a combo, a picker (a variant-choice product such as "choose your side") or a bundle, and carries a price reflecting this specific restaurant when Popeyes reports one for that exact entry -- a missing price does not mean the item is free, it means this restaurant's pricing call did not cover that entry. Some menu entries are published directly at the top level outside any named section; these are grouped into a synthetic "Featured" category (featured true).
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "14156",
"currency": "USD",
"categories": [
{
"id": "c17aefeb-aabe-4c21-ae57-137eb724f565",
"name": "Limited Time Items",
"items": [
{
"id": "item_103182",
"type": "ITEM",
"name": "Cheese Bites",
"image_url": "https://cdn.sanity.io/images/czqk28jt/prod_plk_us/5030d73a5159ee07173fd5de0495fe9d089513c3-888x570.png",
"price": {
"default_cents": 399,
"default": 3.99,
"min_cents": 199,
"min": 1.99,
"max_cents": 399,
"max": 3.99
}
}
]
}
],
"item_count": 98,
"source_url": "https://czqk28jt.apicdn.sanity.io/v1/graphql/prod_plk_us/default",
"fetched_at": "2026-09-02T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/popeyes/menu?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"