Endpoint Playground
Test Crawlora's Wendy's Nutrition 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/nutrition?category=<category>&item=<item>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Category slug from /wendys/categories | |
| item | string | Yes | Item slug from /wendys/menu's items[].slug -- a combo slug is accepted |
{
"code": 200,
"msg": "OK",
"data": {
"category": "hamburgers",
"item": "daves-single",
"name": "Dave's Single®",
"is_combo": false,
"nutrition": {
"calories": 560,
"calories_from_fat": 300,
"total_fat_g": 34,
"saturated_fat_g": 14,
"trans_fat_g": 1.5,
"cholesterol_mg": 90,
"sodium_mg": 1170,
"total_carbohydrate_g": 37,
"dietary_fiber_g": 2,
"sugars_g": 9,
"protein_g": 31,
"calcium_mg": 15,
"iron_mg": 25,
"potassium_mg": 10,
"serving_weight_grams": 245.43
},
"allergens": [
"Milk",
"Egg",
"Wheat",
"Soy",
"Sesame"
],
"source_url": "https://order.wendys.com/us/en/national/menu/hamburgers/daves-single",
"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 item's (or combo's) complete nutrition-facts panel -- calories, fat, cholesterol, sodium, carbohydrate, protein, vitamins and minerals -- as real numbers, plus declared allergens. A simple item's panel is for its default configuration (default bun/size, default condiments, no extras, no required-group substitutions). A combo's panel (is_combo true) is the *combined* total across every slot's default option in one request, the same way a caller building the full order would sum it themselves -- combo_selections lists which option each slot was computed for. GET /wendys/item and GET /wendys/menu only ever carry a calorie count, because that is all Wendy's own menu pages themselves publish inline; the full panel is fetched separately by Wendy's own "Nutrition" tab, and this endpoint resolves and calls that same source so a caller does not have to reverse-engineer it. A nutrient Wendy's does not publish is omitted from the response rather than reported as zero. Category and item slugs come from GET /wendys/categories and GET /wendys/menu.
{
"code": 200,
"msg": "OK",
"data": {
"category": "hamburgers",
"item": "daves-single",
"name": "Dave's Single®",
"is_combo": false,
"nutrition": {
"calories": 560,
"calories_from_fat": 300,
"total_fat_g": 34,
"saturated_fat_g": 14,
"trans_fat_g": 1.5,
"cholesterol_mg": 90,
"sodium_mg": 1170,
"total_carbohydrate_g": 37,
"dietary_fiber_g": 2,
"sugars_g": 9,
"protein_g": 31,
"calcium_mg": 15,
"iron_mg": 25,
"potassium_mg": 10,
"serving_weight_grams": 245.43
},
"allergens": [
"Milk",
"Egg",
"Wheat",
"Soy",
"Sesame"
],
"source_url": "https://order.wendys.com/us/en/national/menu/hamburgers/daves-single",
"fetched_at": "2026-09-02T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wendys/nutrition?category=<category>&item=<item>" \
-H "x-api-key: $CRAWLORA_API_KEY"