Endpoint Playground
Test Crawlora's Pandamart Store 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/store/search?market=sg&code=<code>&query=<query>&sort=RELEVANCE" \
-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 | |
| query | string | Yes | Product search text | |
| sort | string | No | RELEVANCE | Result order. One of RELEVANCE, PRICE_ASC, PRICE_DESC. Defaults to RELEVANCE. |
| page | integer | No | 1-based result page (default 1) | |
| limit | integer | No | Products per page, clamped to 10-50 (default 20) |
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "wsg7",
"query": "milk",
"sort": "RELEVANCE",
"products": [
{
"id": "46896362",
"name": "Greenfields Low Fat Milk 1L",
"description": "Guaranteed Shelf Life: 7 days",
"image_url": "https://foodpanda.dhmedia.io/image/darkstores/sgp/topseller/20231120/8993351129204_001.jpg",
"price": 3.39,
"original_price": 3.5,
"sku": "3P6F61",
"stock_amount": 38,
"is_available": true,
"discount_badge": "3% off"
}
],
"total_products": 400,
"page": 1,
"limit": 20,
"has_more": true
}
}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.
Searches by keyword within one darkstore's own catalog -- the pandamart equivalent of the search box on a darkstore page. Unlike the product showcase's curated shelves, this reaches the store's full catalog by keyword. Returns matching products with real prices, stock, and availability, plus total_products and has_more for pagination via page/limit.
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "wsg7",
"query": "milk",
"sort": "RELEVANCE",
"products": [
{
"id": "46896362",
"name": "Greenfields Low Fat Milk 1L",
"description": "Guaranteed Shelf Life: 7 days",
"image_url": "https://foodpanda.dhmedia.io/image/darkstores/sgp/topseller/20231120/8993351129204_001.jpg",
"price": 3.39,
"original_price": 3.5,
"sku": "3P6F61",
"stock_amount": 38,
"is_available": true,
"discount_badge": "3% off"
}
],
"total_products": 400,
"page": 1,
"limit": 20,
"has_more": true
}
}curl "https://api.crawlora.net/api/v1/pandamart/store/search?code=<code>&query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"