Endpoint Playground
Test Crawlora's Popeyes Locations 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/locations?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| radius | integer | No | Search radius in meters, 1-50000 (default 8000) | |
| max_results | integer | No | Maximum restaurants to return, 1-50 (default 20) |
{
"code": 200,
"msg": "OK",
"data": {
"restaurants": [
{
"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"
}
],
"count": 1,
"total_count": 51,
"has_more": true,
"source_url": "https://use1-prod-plk-gateway.rbictg.com/graphql",
"fetched_at": "2026-09-02T00: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 Popeyes restaurants near a latitude/longitude. Each restaurant carries its internal id and numeric store id (the value /popeyes/menu takes), full address with coordinates, phone, the operating franchise group, amenity flags (breakfast, delivery, drive-thru, playground, takeout, wifi, halal, dark kitchen) and the full published week of hours for dining room, drive-thru, delivery and curbside separately. A coordinate with no nearby Popeyes returns an empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"restaurants": [
{
"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"
}
],
"count": 1,
"total_count": 51,
"has_more": true,
"source_url": "https://use1-prod-plk-gateway.rbictg.com/graphql",
"fetched_at": "2026-09-02T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/popeyes/locations?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"