Endpoint Playground
Test Crawlora's Popeyes Location 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/popeyes/location?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Popeyes' numeric store id, from /popeyes/locations | |
| market | string | No | Restaurant market: `US` (default) or `CA` |
{
"code": 200,
"msg": "OK",
"data": {
"restaurant": {
"id": "restaurant_242928",
"store_id": "14156",
"name": "111 Fulton St New York, New York 10038 - USA",
"address": "111 Fulton St",
"city": "New York",
"state": "NY",
"postal_code": "10038",
"country": "USA",
"phone": "929-579-0553",
"latitude": 40.709873,
"longitude": -74.006601,
"has_breakfast": false,
"has_delivery": true,
"has_drive_thru": false,
"has_playground": false,
"has_takeout": true,
"has_wifi": false,
"is_halal": false,
"is_dark_kitchen": false,
"hours": {
"dining_room": [
{
"day": "monday",
"open": "11:00:00",
"close": "22:00:00"
}
]
},
"website_url": "https://www.popeyes.com/store-locator/store/restaurant_242928"
},
"source_url": "https://use1-prod-plk-gateway.rbictg.com/graphql",
"fetched_at": "2026-09-04T00:00: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 restaurant's full detail -- the same fields /popeyes/locations returns per restaurant (address, coordinates, phone, operator, amenity flags, full published hours) -- looked up directly by its numeric store id instead of a coordinate/radius search. Useful when the store id is already known, e.g. from a prior /popeyes/locations call. An unknown store id returns a 404.
{
"code": 200,
"msg": "OK",
"data": {
"restaurant": {
"id": "restaurant_242928",
"store_id": "14156",
"name": "111 Fulton St New York, New York 10038 - USA",
"address": "111 Fulton St",
"city": "New York",
"state": "NY",
"postal_code": "10038",
"country": "USA",
"phone": "929-579-0553",
"latitude": 40.709873,
"longitude": -74.006601,
"has_breakfast": false,
"has_delivery": true,
"has_drive_thru": false,
"has_playground": false,
"has_takeout": true,
"has_wifi": false,
"is_halal": false,
"is_dark_kitchen": false,
"hours": {
"dining_room": [
{
"day": "monday",
"open": "11:00:00",
"close": "22:00:00"
}
]
},
"website_url": "https://www.popeyes.com/store-locator/store/restaurant_242928"
},
"source_url": "https://use1-prod-plk-gateway.rbictg.com/graphql",
"fetched_at": "2026-09-04T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/popeyes/location?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"