Endpoint Playground
Test Crawlora's Foodpanda Search Cuisines 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/cuisines?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 |
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"available_count": 3637,
"cuisines": [
{
"id": 51,
"name": "American",
"slug": "american",
"count": 61
},
{
"id": 39,
"name": "Asian",
"slug": "asian",
"count": 2583
},
{
"id": 44,
"name": "Indian",
"slug": "indian",
"count": 338
}
]
}
}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 foodpanda's own live cuisine catalog for a latitude/longitude in a foodpanda market -- the exact facet list (with real, live restaurant counts) the site's own search page cuisine filter sidebar is populated from. Every entry's id is a valid value for /foodpanda/search's cuisine_id parameter. Cuisine ids are location- and market-scoped, not a fixed global enum: the same coordinate in a different neighborhood, or a different market, can return a different id/count set entirely, so call this endpoint with the same market/latitude/longitude you intend to search rather than reusing ids captured elsewhere.
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"available_count": 3637,
"cuisines": [
{
"id": 51,
"name": "American",
"slug": "american",
"count": 61
},
{
"id": 39,
"name": "Asian",
"slug": "asian",
"count": 2583
},
{
"id": 44,
"name": "Indian",
"slug": "indian",
"count": 338
}
]
}
}curl "https://api.crawlora.net/api/v1/foodpanda/search/cuisines?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"