Endpoint Playground
Test Crawlora's Foodpanda Restaurant 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/restaurant?market=sg&code=<code>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| market | string | No | sg | Delivery Hero market the restaurant belongs to. Defaults to sg. |
| code | string | Yes | Restaurant code, from /foodpanda/search's code field | |
| latitude | number | No | Caller latitude, optional | |
| longitude | number | No | Caller longitude, optional |
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "dxpr",
"name": "NKS RESTAURANT (179 MACPHERSON RD) - Islandwide",
"address": "179 MACPHERSON ROAD, SINGAPORE 348539",
"city": "Singapore",
"latitude": 1.330233,
"longitude": 103.875209,
"budget": 1,
"rating": 3.8,
"review_count": 18,
"cuisines": [
{
"id": 44,
"name": "Indian"
}
],
"is_delivery_available": true,
"is_pickup_available": false,
"has_discount": false,
"timezone": "Asia/Singapore",
"customer_phone": "+6596694923",
"legal_information": {
"legal_name": "FOOD ASPIRATION PTE. LTD.",
"trade_register_number": "201304764C"
}
}
}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 foodpanda restaurant's detail by code: name, address, coordinates, budget tier, rating and review count, cuisines, minimum order amount, minimum delivery fee, delivery/pickup availability, timezone, and a hero image. Supplying latitude and longitude only affects the (optional) computed fields the upstream itself returns for that coordinate; it does not filter or reject the lookup.
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "dxpr",
"name": "NKS RESTAURANT (179 MACPHERSON RD) - Islandwide",
"address": "179 MACPHERSON ROAD, SINGAPORE 348539",
"city": "Singapore",
"latitude": 1.330233,
"longitude": 103.875209,
"budget": 1,
"rating": 3.8,
"review_count": 18,
"cuisines": [
{
"id": 44,
"name": "Indian"
}
],
"is_delivery_available": true,
"is_pickup_available": false,
"has_discount": false,
"timezone": "Asia/Singapore",
"customer_phone": "+6596694923",
"legal_information": {
"legal_name": "FOOD ASPIRATION PTE. LTD.",
"trade_register_number": "201304764C"
}
}
}curl "https://api.crawlora.net/api/v1/foodpanda/restaurant?code=<code>" \
-H "x-api-key: $CRAWLORA_API_KEY"