Endpoint Playground
Test Crawlora's Jimmy John's 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/jimmy-johns/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Store path from a /jimmy-johns/sitemap entry |
{
"code": 200,
"msg": "OK",
"data": {
"name": "Jimmy John's",
"address": {
"street": "2115 W Jonathan Moore Pike",
"city": "Columbus",
"region": "IN",
"postal_code": "47201",
"country": "US"
},
"phone_number": "+18123785466",
"latitude": 39.1994347,
"longitude": -85.9470667,
"hours": [
{
"day_of_week": "Monday",
"opens": "11:00",
"closes": "21:00"
}
],
"path": "in/columbus/sandwiches-1414.html",
"source_url": "https://locations.jimmyjohns.com/in/columbus/sandwiches-1414.html",
"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 Jimmy John's store: name, postal address, phone, coordinates, cuisine description and the published week of opening hours. Store paths come from GET /jimmy-johns/sitemap. Note Jimmy John's main site is behind a bot challenge that serves a page with HTTP 200, so this family reads the separate locator subdomain instead. For menu data, see GET /jimmy-johns/nearby and GET /jimmy-johns/menu, which read a separate ordering API.
{
"code": 200,
"msg": "OK",
"data": {
"name": "Jimmy John's",
"address": {
"street": "2115 W Jonathan Moore Pike",
"city": "Columbus",
"region": "IN",
"postal_code": "47201",
"country": "US"
},
"phone_number": "+18123785466",
"latitude": 39.1994347,
"longitude": -85.9470667,
"hours": [
{
"day_of_week": "Monday",
"opens": "11:00",
"closes": "21:00"
}
],
"path": "in/columbus/sandwiches-1414.html",
"source_url": "https://locations.jimmyjohns.com/in/columbus/sandwiches-1414.html",
"fetched_at": "2026-08-31T17:30:00Z"
}
}curl "https://api.crawlora.net/api/v1/jimmy-johns/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"