Endpoint Playground
Test Crawlora's Wendy's Store 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/wendys/store-menu?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Numeric store id, e.g. from /wendys/nearby's stores[].store_id or /wendys/restaurant's store_id |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "12921",
"items": [
{
"menu_item_id": 30013,
"name": "Spicy Chicken Sandwich",
"description": "A juicy chicken breast marinated in a fiery blend of peppers and spices...",
"calories": "560 Cal",
"price": "$7.85",
"day_part": "LUNCH"
},
{
"menu_item_id": 40000,
"name": "Dave's Single® Combo",
"price": "$11.94",
"day_part": "LUNCH"
}
],
"count": 170,
"source_url": "https://api.app.prd.wendys.digital/mobile-client-gateway/menu/getSiteMenu?...",
"fetched_at": "2026-09-04T00: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 own priced, offered item list -- real local pricing (including full combo bundle prices, which GET /wendys/item deliberately does not compute, since a combo's own price varies by what's chosen in each slot) and any store-specific promotional items, rather than Wendy's own generic/average national-menu listing (GET /wendys/menu, /wendys/item). Found via static analysis of Wendy's official Android app and confirmed credential-free: a cold, cookie-less request with just a store id returns real data, no session or account required.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "12921",
"items": [
{
"menu_item_id": 30013,
"name": "Spicy Chicken Sandwich",
"description": "A juicy chicken breast marinated in a fiery blend of peppers and spices...",
"calories": "560 Cal",
"price": "$7.85",
"day_part": "LUNCH"
},
{
"menu_item_id": 40000,
"name": "Dave's Single® Combo",
"price": "$11.94",
"day_part": "LUNCH"
}
],
"count": 170,
"source_url": "https://api.app.prd.wendys.digital/mobile-client-gateway/menu/getSiteMenu?...",
"fetched_at": "2026-09-04T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wendys/store-menu?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"