Endpoint Playground
Test Crawlora's Foodpanda Search 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/foodpanda/search?market=sg&latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| market | string | No | sg | Delivery Hero market. Defaults to sg. |
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| cuisine_id | integer | No | Numeric cuisine id to filter by, from a restaurant's cuisines[].id | |
| limit | integer | No | Restaurants to return, clamped to 50 (default 20) | |
| offset | integer | No | Result offset for pagination (default 0) |
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"restaurants": [
{
"code": "dxpr",
"name": "NKS RESTAURANT (179 MACPHERSON RD) - Islandwide",
"address": "179 MACPHERSON ROAD, SINGAPORE 348539",
"city": "Singapore",
"latitude": 1.330233,
"longitude": 103.875209,
"distance_km": 6.622,
"budget": 1,
"rating": 3.8,
"review_count": 18,
"cuisines": [
{
"id": 44,
"name": "Indian"
},
{
"id": 115,
"name": "Western"
}
],
"hero_image_url": "https://images.deliveryhero.io/image/fd-sg/LH/dxpr-listing.jpg",
"minimum_delivery_fee": 4.3,
"minimum_order_amount": 16,
"minimum_delivery_time_minutes": 30,
"is_delivery_available": true,
"is_pickup_available": false,
"has_discount": false,
"timezone": "Asia/Singapore",
"web_path": "https://foodpanda.sg/restaurant/dxpr/nks-restaurant-179-macpherson-rd-islandwide",
"customer_phone": "+6596694923",
"legal_information": {
"legal_name": "FOOD ASPIRATION PTE. LTD.",
"trade_register_number": "201304764C"
}
}
],
"available_count": 797,
"returned_count": 1,
"offset": 0
}
}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 restaurants delivering to a latitude/longitude in a foodpanda market, optionally filtered by a numeric cuisine id (from a prior response's cuisines[].id). Each restaurant carries its code (the value the restaurant and menu endpoints take), name, address, coordinates, budget tier, rating, cuisines, minimum order amount and delivery fee, delivery/pickup availability, and a hero image. A location with no coverage returns an empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"restaurants": [
{
"code": "dxpr",
"name": "NKS RESTAURANT (179 MACPHERSON RD) - Islandwide",
"address": "179 MACPHERSON ROAD, SINGAPORE 348539",
"city": "Singapore",
"latitude": 1.330233,
"longitude": 103.875209,
"distance_km": 6.622,
"budget": 1,
"rating": 3.8,
"review_count": 18,
"cuisines": [
{
"id": 44,
"name": "Indian"
},
{
"id": 115,
"name": "Western"
}
],
"hero_image_url": "https://images.deliveryhero.io/image/fd-sg/LH/dxpr-listing.jpg",
"minimum_delivery_fee": 4.3,
"minimum_order_amount": 16,
"minimum_delivery_time_minutes": 30,
"is_delivery_available": true,
"is_pickup_available": false,
"has_discount": false,
"timezone": "Asia/Singapore",
"web_path": "https://foodpanda.sg/restaurant/dxpr/nks-restaurant-179-macpherson-rd-islandwide",
"customer_phone": "+6596694923",
"legal_information": {
"legal_name": "FOOD ASPIRATION PTE. LTD.",
"trade_register_number": "201304764C"
}
}
],
"available_count": 797,
"returned_count": 1,
"offset": 0
}
}curl "https://api.crawlora.net/api/v1/foodpanda/search?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"