Endpoint Playground
Test Crawlora's Pandamart Store Products 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/products?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 |
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "wsg7",
"shelves": [
{
"title": "Hot Deals",
"items": [
{
"id": "43741159",
"name": "brightfarms Fresh Farm Eggs 15S x 60g",
"description": "Handy size 15 pcs fresh eggs",
"image_url": "https://foodpanda.dhmedia.io/image/darkstores/nv-global-catalog/sg/bb4cd103-d19e-40db-8bb4-705ca794e28b.jpg",
"price": 4.6,
"original_price": 5.2,
"sku": "3JKPN6",
"stock_amount": 171,
"is_available": true,
"discount_badge": "11% off"
}
]
}
],
"item_count": 101
}
}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 darkstore's product showcase: every named shelf its own home page displays (deals, new arrivals, category highlights, etc.), each with real prices, stock, and availability. This is the curated set of shelves the store's home page surfaces, not the full category-browsable catalog -- browsing into a specific category page requires a resolved delivery-address session this repo could not reproduce server-side.
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "wsg7",
"shelves": [
{
"title": "Hot Deals",
"items": [
{
"id": "43741159",
"name": "brightfarms Fresh Farm Eggs 15S x 60g",
"description": "Handy size 15 pcs fresh eggs",
"image_url": "https://foodpanda.dhmedia.io/image/darkstores/nv-global-catalog/sg/bb4cd103-d19e-40db-8bb4-705ca794e28b.jpg",
"price": 4.6,
"original_price": 5.2,
"sku": "3JKPN6",
"stock_amount": 171,
"is_available": true,
"discount_badge": "11% off"
}
]
}
],
"item_count": 101
}
}curl "https://api.crawlora.net/api/v1/pandamart/store/products?code=<code>" \
-H "x-api-key: $CRAWLORA_API_KEY"