Endpoint Playground
Test Crawlora's Pandamart Store 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/pandamart/store?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 store belongs to. One of sg, pk, bd, hk, my, ph. Defaults to sg. |
| code | string | Yes | Darkstore code, from /pandamart/search's code field | |
| latitude | number | No | Caller latitude, optional | |
| longitude | number | No | Caller longitude, optional |
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "wsg7",
"name": "pandamart Kallang Way",
"address": "164 Kallang Way #02-15, Singapore 349248",
"city": "Singapore",
"latitude": 1.32439836,
"longitude": 103.8760178,
"budget": 2,
"chain": {
"code": "cl5jl",
"name": "PandaMart SG"
},
"is_delivery_available": true,
"is_pickup_available": true,
"has_discount": false,
"timezone": "Asia/Singapore",
"web_path": "https://foodpanda.sg/restaurant/wsg7/pandamart-kallang-way-wsg7"
}
}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 pandamart darkstore's detail by code: name, address, coordinates, budget tier, chain, 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": "wsg7",
"name": "pandamart Kallang Way",
"address": "164 Kallang Way #02-15, Singapore 349248",
"city": "Singapore",
"latitude": 1.32439836,
"longitude": 103.8760178,
"budget": 2,
"chain": {
"code": "cl5jl",
"name": "PandaMart SG"
},
"is_delivery_available": true,
"is_pickup_available": true,
"has_discount": false,
"timezone": "Asia/Singapore",
"web_path": "https://foodpanda.sg/restaurant/wsg7/pandamart-kallang-way-wsg7"
}
}curl "https://api.crawlora.net/api/v1/pandamart/store?code=<code>" \
-H "x-api-key: $CRAWLORA_API_KEY"