Endpoint Playground
Test Crawlora's Foodpanda Restaurant Reviews 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/reviews?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 |
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "dxpr",
"reviews": [
{
"author": "Choy",
"date_published": "2026-03-21",
"body": "Nice food. Always the first choice. Thanks.",
"rating": 5
},
{
"author": "aman",
"date_published": "2026-07-20",
"body": "I ordered a bee hoon goreng but instead it came maggi goreng ",
"rating": 1
}
],
"review_count": 2
}
}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 a sample of real customer reviews for one restaurant -- author name, publish date, review text, and a 1-5 rating. This is the curated sample the restaurant's own storefront page embeds for search-engine rich results, not the full review corpus a logged-in customer would see in the app; the number returned scales with the restaurant's popularity rather than being a fixed cap, and can be empty for a restaurant with few or no reviews.
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "dxpr",
"reviews": [
{
"author": "Choy",
"date_published": "2026-03-21",
"body": "Nice food. Always the first choice. Thanks.",
"rating": 5
},
{
"author": "aman",
"date_published": "2026-07-20",
"body": "I ordered a bee hoon goreng but instead it came maggi goreng ",
"rating": 1
}
],
"review_count": 2
}
}curl "https://api.crawlora.net/api/v1/foodpanda/restaurant/reviews?code=<code>" \
-H "x-api-key: $CRAWLORA_API_KEY"