Endpoint Playground
Test Crawlora's CVS store locator 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/cvs/store-locator" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| zip | string | No | 5-digit US ZIP code, e.g. \ | |
| latitude | number | No | Latitude, used together with longitude when zip is not supplied | |
| longitude | number | No | Longitude, used together with latitude when zip is not supplied |
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 5,
"stores": [
{
"store_id": "9767",
"address_line1": "9045 WILSHIRE BOULEVARD",
"city": "BEVERLY HILLS",
"state": "CA",
"zip": "90211",
"phone": "3102735252",
"fax": "3102736289",
"latitude": 34.06741,
"longitude": -118.38934,
"distance_miles": 1.12,
"time_zone": "PDT",
"store_hours": [
{
"weekday": "MON",
"open_time": "08:00 AM",
"close_time": "11:00 PM"
}
],
"has_pharmacy": true,
"services": [
"RX_Pharmacy_Ind",
"PH_Photo_Ind",
"atmInd",
"RS_BOPIS_Ind"
]
}
]
}
}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 nearby CVS store locations for a ZIP code or a latitude/longitude pair: address, phone, fax, distance, and retail store hours, plus a has_pharmacy existence flag and a list of general service indicators (e.g. photo, ATM, same-day delivery). Covers general store info only -- this does not return pharmacy hours, pharmacy phone, prescription data, or any patient-specific information. zip is a 5-digit US ZIP code; alternatively supply latitude and longitude together. CVS.com is only available from US/US-territory egress; a request from an unsupported region returns an upstream error rather than an empty result.
{
"code": 200,
"msg": "OK",
"data": {
"total_count": 5,
"stores": [
{
"store_id": "9767",
"address_line1": "9045 WILSHIRE BOULEVARD",
"city": "BEVERLY HILLS",
"state": "CA",
"zip": "90211",
"phone": "3102735252",
"fax": "3102736289",
"latitude": 34.06741,
"longitude": -118.38934,
"distance_miles": 1.12,
"time_zone": "PDT",
"store_hours": [
{
"weekday": "MON",
"open_time": "08:00 AM",
"close_time": "11:00 PM"
}
],
"has_pharmacy": true,
"services": [
"RX_Pharmacy_Ind",
"PH_Photo_Ind",
"atmInd",
"RS_BOPIS_Ind"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/cvs/store-locator" \
-H "x-api-key: $CRAWLORA_API_KEY"