Endpoint Playground
Test Crawlora's Subway Store 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/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Store path from a /subway/sitemap entry |
{
"code": 200,
"msg": "OK",
"data": {
"name": "Subway",
"address": {
"street": "1 Penn Plaza",
"city": "New York",
"region": "NY",
"postal_code": "10119",
"country": "US"
},
"phone_number": "(212) 244-0101",
"latitude": 40.7517026,
"longitude": -73.9925826,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "09:00",
"closes": "23:00"
}
],
"path": "united-states/ny/new-york/1-penn-plaza",
"source_url": "https://restaurants.subway.com/united-states/ny/new-york/1-penn-plaza",
"fetched_at": "2026-08-31T17:30: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: postal address, coordinates, phone and the full published week of opening hours. Store paths come from the deepest entries in GET /subway/sitemap. Passing a country, region or city directory path returns a 404 rather than a hollow record, since those pages carry no street address. Note Subway publishes no credential-free menu or nutrition data, so this family is a locator only.
{
"code": 200,
"msg": "OK",
"data": {
"name": "Subway",
"address": {
"street": "1 Penn Plaza",
"city": "New York",
"region": "NY",
"postal_code": "10119",
"country": "US"
},
"phone_number": "(212) 244-0101",
"latitude": 40.7517026,
"longitude": -73.9925826,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "09:00",
"closes": "23:00"
}
],
"path": "united-states/ny/new-york/1-penn-plaza",
"source_url": "https://restaurants.subway.com/united-states/ny/new-york/1-penn-plaza",
"fetched_at": "2026-08-31T17:30:00Z"
}
}curl "https://api.crawlora.net/api/v1/subway/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"