Endpoint Playground
Test Crawlora's Subway 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/subway/menu?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Store ID from a /subway/store result's store_id |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "75376-0",
"currency": "USD",
"category_count": 1,
"product_count": 1,
"categories": [
{
"id": "1187",
"name": "Steak",
"is_main_category": true,
"items": [
{
"id": "50080",
"name": "Steak Philly",
"slug": "steak-philly",
"variants": [
{
"id": "50081",
"name": "Steak Philly Sandwich (1DM)",
"size": "Footlong",
"price": 13.99,
"available": true,
"nutrition": [
{
"name": "CALORIES",
"value": 1010
},
{
"name": "TOTAL FAT (g)",
"value": 50
}
],
"allergens": [
{
"name": "Milk/Lactose",
"contains": true,
"may_contain": false
}
],
"image_asset_urn": "urn:aaid:aem:steak-philly-footlong"
}
]
}
]
}
],
"source_url": "https://www.subway.com/api/store-menu/75376-0?locale=en-us",
"fetched_at": "2026-09-02T12: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 Subway store's complete menu: every category, every product, and for each purchasable size (Footlong, 6-inch, etc.) its price, full nutrition panel (calories, fat, sodium, protein and more) and allergen disclosures. Store IDs come from a GET /subway/store result's store_id field. Categories carry is_main_category: true for human-browsable menu sections (Sandwiches, Drinks, Salads, ...) and false for Subway's own internal build/customization groupings, which are included for completeness but are not meant to be shown as menu sections on their own.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "75376-0",
"currency": "USD",
"category_count": 1,
"product_count": 1,
"categories": [
{
"id": "1187",
"name": "Steak",
"is_main_category": true,
"items": [
{
"id": "50080",
"name": "Steak Philly",
"slug": "steak-philly",
"variants": [
{
"id": "50081",
"name": "Steak Philly Sandwich (1DM)",
"size": "Footlong",
"price": 13.99,
"available": true,
"nutrition": [
{
"name": "CALORIES",
"value": 1010
},
{
"name": "TOTAL FAT (g)",
"value": 50
}
],
"allergens": [
{
"name": "Milk/Lactose",
"contains": true,
"may_contain": false
}
],
"image_asset_urn": "urn:aaid:aem:steak-philly-footlong"
}
]
}
]
}
],
"source_url": "https://www.subway.com/api/store-menu/75376-0?locale=en-us",
"fetched_at": "2026-09-02T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/subway/menu?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"