Endpoint Playground
Test Crawlora's Pandamart Store Product 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/product?market=sg&code=<code>&product_id=<product_id>" \
-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 | |
| product_id | string | Yes | Product ID, from a search/products/categories response's id field |
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "wsg7",
"id": "43741159",
"name": "brightfarms Fresh Farm Eggs 15S x 60g",
"description": "- Handy size 15 pcs fresh eggs\n- Cost effective for scrambled, fried, hard-boiled, soft-boiled, omelettes etc\n- Convenient 15s packing ideal for family daily needs and easy storage\n- Daily produced from Malaysia farms of the highest quality for budget and daily consumers\n- Low sugar",
"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": 138,
"is_available": true,
"discount_badge": "11% off",
"category_id": "d5e9c8cc-292b-4c61-9d6f-89b2152a53c1",
"attributes": {
"base_unit": "KG",
"base_content_value": 1
}
}
}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 product's full detail by ID: the same fields a shelf/search result carries plus category_id and, for weighable/grocery items, per-unit pricing and nutrition attributes. Resolves the store's page slug internally, so only the darkstore code and product ID are needed.
{
"code": 200,
"msg": "OK",
"data": {
"market": "sg",
"code": "wsg7",
"id": "43741159",
"name": "brightfarms Fresh Farm Eggs 15S x 60g",
"description": "- Handy size 15 pcs fresh eggs\n- Cost effective for scrambled, fried, hard-boiled, soft-boiled, omelettes etc\n- Convenient 15s packing ideal for family daily needs and easy storage\n- Daily produced from Malaysia farms of the highest quality for budget and daily consumers\n- Low sugar",
"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": 138,
"is_available": true,
"discount_badge": "11% off",
"category_id": "d5e9c8cc-292b-4c61-9d6f-89b2152a53c1",
"attributes": {
"base_unit": "KG",
"base_content_value": 1
}
}
}curl "https://api.crawlora.net/api/v1/pandamart/store/product?code=<code>&product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"