Endpoint Playground
Test Crawlora's Wendy's 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/menu?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Category slug from /wendys/categories |
{
"code": 200,
"msg": "OK",
"data": {
"category": "hamburgers",
"items": [
{
"item_id": "31419",
"name": "Parmesan Caesar Salad",
"slug": "parmesan-caesar-salad",
"price": "$7.99",
"calories": "520 Cal",
"is_combo": false,
"is_limited_time_offer": false,
"has_required_modifiers": true,
"image_url": "https://app.wendys.com/unified/assets/menu/pg-cropped/1323_medium_US_en.png",
"url": "https://order.wendys.com/us/en/national/menu/hamburgers/parmesan-caesar-salad"
}
],
"count": 12,
"source_url": "https://order.wendys.com/us/en/national/menu/hamburgers",
"fetched_at": "2026-09-01T00: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 item in one category of Wendy's national menu: id, name, slug, Wendy's own displayed price and calorie strings, whether it is a combo (its GET /wendys/item response returns combo_slots instead of components/variants), a limited-time-offer flag, and whether it has required customization (e.g. a salad's dressing choice). Category slugs come from GET /wendys/categories.
{
"code": 200,
"msg": "OK",
"data": {
"category": "hamburgers",
"items": [
{
"item_id": "31419",
"name": "Parmesan Caesar Salad",
"slug": "parmesan-caesar-salad",
"price": "$7.99",
"calories": "520 Cal",
"is_combo": false,
"is_limited_time_offer": false,
"has_required_modifiers": true,
"image_url": "https://app.wendys.com/unified/assets/menu/pg-cropped/1323_medium_US_en.png",
"url": "https://order.wendys.com/us/en/national/menu/hamburgers/parmesan-caesar-salad"
}
],
"count": 12,
"source_url": "https://order.wendys.com/us/en/national/menu/hamburgers",
"fetched_at": "2026-09-01T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wendys/menu?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"