Endpoint Playground
Test Crawlora's Pandamart 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/pandamart/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. One of sg, pk, bd, hk, my, ph. Defaults to sg. |
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| limit | integer | No | Darkstores to return, clamped to 50 (default 20) | |
| offset | integer | No | Result offset for pagination (default 0) |
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"stores": [
{
"code": "wsg7",
"name": "pandamart Kallang Way",
"address": "164 Kallang Way #02-15, Singapore 349248",
"city": "Singapore",
"latitude": 1.32439836,
"longitude": 103.8760178,
"distance_km": 5.365,
"budget": 2,
"chain": {
"code": "cl5jl",
"name": "PandaMart SG"
},
"hero_image_url": "https://foodpanda.dhmedia.io/image/fd-sg/LH/cl5jl-listing.jpg",
"minimum_delivery_fee": 4.99,
"minimum_order_amount": 17,
"minimum_delivery_time_minutes": 30,
"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"
}
],
"available_count": 1,
"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 pandamart grocery/convenience darkstores delivering to a latitude/longitude. Each store carries its code (the value the store and products endpoints take), name, address, coordinates, budget tier, chain, 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",
"stores": [
{
"code": "wsg7",
"name": "pandamart Kallang Way",
"address": "164 Kallang Way #02-15, Singapore 349248",
"city": "Singapore",
"latitude": 1.32439836,
"longitude": 103.8760178,
"distance_km": 5.365,
"budget": 2,
"chain": {
"code": "cl5jl",
"name": "PandaMart SG"
},
"hero_image_url": "https://foodpanda.dhmedia.io/image/fd-sg/LH/cl5jl-listing.jpg",
"minimum_delivery_fee": 4.99,
"minimum_order_amount": 17,
"minimum_delivery_time_minutes": 30,
"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"
}
],
"available_count": 1,
"returned_count": 1,
"offset": 0
}
}curl "https://api.crawlora.net/api/v1/pandamart/search?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"