Endpoint Playground
Test Crawlora's Subway Combos 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/combos?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 or /subway/nearby result's store_id | |
| culture | string | No | Preferred translation culture for display names, e.g. en-US, en-GB, de-DE. Falls back to the category's default name. |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "50916-0",
"categories": [
{
"id": "6",
"name": "Sub Meal Deal (App)",
"sort_order": 36,
"min_bundled_price": 9.99,
"a_la_carte_price": 12.97
}
],
"count": 1,
"source_url": "https://www.subway.com/api/fresh-menu/50916-0",
"fetched_at": "2026-09-06T01:15: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 bundle and combo categories with the price ranges they advertise -- min_bundled_price (cheapest as a bundle) and a_la_carte_price (cheapest bought separately). Unlike GET /subway/menu, which is US-only, this works in other markets: confirmed against US, GB and DE stores. It is NOT an itemised menu -- the upstream route behind it carries categories and prices only, with no individual products, no nutrition panels and no allergen disclosures. Use GET /subway/menu for a full itemised menu where it is available. A store with no bundles configured returns an empty categories array, which is a valid answer rather than an error. Store IDs come from a GET /subway/store or GET /subway/nearby result's store_id field.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "50916-0",
"categories": [
{
"id": "6",
"name": "Sub Meal Deal (App)",
"sort_order": 36,
"min_bundled_price": 9.99,
"a_la_carte_price": 12.97
}
],
"count": 1,
"source_url": "https://www.subway.com/api/fresh-menu/50916-0",
"fetched_at": "2026-09-06T01:15:00Z"
}
}curl "https://api.crawlora.net/api/v1/subway/combos?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"