Endpoint Playground
Test Crawlora's 7NOW Stores 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/7now/stores?address=<address>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| address | string | Yes | Free-text delivery address, street, city and state, or postal code. |
{
"code": 200,
"msg": "OK",
"data": {
"query": "350 5th Ave, New York, NY",
"resolved_address": "350 5th Ave, New York, NY 10118, USA",
"latitude": 40.7480997,
"longitude": -73.9849926,
"h3_index": "872a100d2ffffff",
"stores": [
{
"store_id": "39226",
"name": "7-Eleven",
"address": "866 6TH AVE",
"city": "New York",
"state": "NY",
"zip": "10001",
"county": "New York County",
"country": "US",
"latitude": 40.747508,
"longitude": -73.989099,
"distance_miles": 0.22,
"store_category": "7now",
"brand": "7-Eleven",
"brand_logo_url": "https://d1se8uetpsj0rs.cloudfront.net/media/StoreBrands/711_96.png",
"dma": "New York Ny",
"alcohol_sale_hours": [
{
"day": "Sunday",
"windows": [
{
"start_time": "0000",
"end_time": "0200"
},
{
"start_time": "0800",
"end_time": "2359"
}
]
},
{
"day": "Monday",
"windows": [
{
"start_time": "0000",
"end_time": "2359"
}
]
}
]
}
],
"count": 13,
"source_url": "https://www.7now.com/api/bff/location-services/getAddress",
"fetched_at": "2026-09-05T19:25:33Z"
}
}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.
Resolves a free-text delivery address, street, city and state, or postal code to the nearest 7NOW-enabled 7-Eleven stores, nearest first. Each store carries its store_id, address, coordinates, straight-line distance in miles from the resolved address, the banner it trades under, its Nielsen DMA, and its per-day alcohol sale windows -- upstream's own encoding of the local law, which is why a day can hold more than one window (a New York store's Sunday runs 0000-0200 and 0800-2359). An empty alcohol_sale_hours means upstream publishes no windows for that store, which is not the same as it selling no alcohol. The response also carries the Uber H3 cell for the resolved address. Use store_id with GET /7now/catalog, /7now/categories, /7now/deals, /7now/offers or /7now/combos to browse that store. An address that cannot be geocoded, or one with no nearby 7NOW coverage, returns a 404.
{
"code": 200,
"msg": "OK",
"data": {
"query": "350 5th Ave, New York, NY",
"resolved_address": "350 5th Ave, New York, NY 10118, USA",
"latitude": 40.7480997,
"longitude": -73.9849926,
"h3_index": "872a100d2ffffff",
"stores": [
{
"store_id": "39226",
"name": "7-Eleven",
"address": "866 6TH AVE",
"city": "New York",
"state": "NY",
"zip": "10001",
"county": "New York County",
"country": "US",
"latitude": 40.747508,
"longitude": -73.989099,
"distance_miles": 0.22,
"store_category": "7now",
"brand": "7-Eleven",
"brand_logo_url": "https://d1se8uetpsj0rs.cloudfront.net/media/StoreBrands/711_96.png",
"dma": "New York Ny",
"alcohol_sale_hours": [
{
"day": "Sunday",
"windows": [
{
"start_time": "0000",
"end_time": "0200"
},
{
"start_time": "0800",
"end_time": "2359"
}
]
},
{
"day": "Monday",
"windows": [
{
"start_time": "0000",
"end_time": "2359"
}
]
}
]
}
],
"count": 13,
"source_url": "https://www.7now.com/api/bff/location-services/getAddress",
"fetched_at": "2026-09-05T19:25:33Z"
}
}curl "https://api.crawlora.net/api/v1/7now/stores?address=<address>" \
-H "x-api-key: $CRAWLORA_API_KEY"