Endpoint Playground
Test Crawlora's Walgreens 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/walgreens/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | No | Latitude; provide with longitude, or provide zip instead | |
| longitude | number | No | Longitude; provide with latitude, or provide zip instead | |
| zip | string | No | US ZIP code; used when latitude/longitude are omitted |
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 438,
"stores": [
{
"store_number": "5387",
"name": "Walgreen Drug Store",
"brand": "Walgreens",
"address_line1": "79 W MONROE ST",
"intersection": "Southeast corner of CLARK & MONROE",
"city": "CHICAGO",
"state": "IL",
"zip": "60603",
"county": "COOK",
"phone": "312-346-5727",
"latitude": 41.88058451,
"longitude": -87.63064779,
"distance_miles": 0.17,
"store_open_time": "8AM",
"store_close_time": "4PM",
"time_zone": "CE",
"services": [
"Immunizations",
"Flu Shot",
"One Hour Photo"
]
}
]
}
}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 Walgreens stores near a latitude/longitude or a zip code, nearest first: name, address, phone, hours, and in-store services (pharmacy, clinic, photo, and more) for each. Public data sourced from Walgreens' own store locator.
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 438,
"stores": [
{
"store_number": "5387",
"name": "Walgreen Drug Store",
"brand": "Walgreens",
"address_line1": "79 W MONROE ST",
"intersection": "Southeast corner of CLARK & MONROE",
"city": "CHICAGO",
"state": "IL",
"zip": "60603",
"county": "COOK",
"phone": "312-346-5727",
"latitude": 41.88058451,
"longitude": -87.63064779,
"distance_miles": 0.17,
"store_open_time": "8AM",
"store_close_time": "4PM",
"time_zone": "CE",
"services": [
"Immunizations",
"Flu Shot",
"One Hour Photo"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/walgreens/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"