Endpoint Playground
Test Crawlora's Tokopedia product detail 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/tokopedia/product?shop_domain=<shop_domain>&product_key=<product_key>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| shop_domain | string | Yes | Canonical Tokopedia shop domain | |
| product_key | string | Yes | Canonical Tokopedia product key |
{
"code": 200,
"data": {
"browser_rendered": true,
"description": "sample",
"discount_percent": "sample",
"fetched_at": "sample",
"images": [
"sample"
],
"name": "sample",
"original_price": "sample",
"price": 1,
"price_text": "sample",
"product_id": "sample-id",
"product_key": "sample",
"shop_domain": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}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 public product detail from a canonical Tokopedia shop domain and product key. This endpoint does not accept arbitrary URLs; numeric product IDs are returned when the product page exposes them but cannot be used as lookup input.
{
"code": 200,
"data": {
"browser_rendered": true,
"description": "sample",
"discount_percent": "sample",
"fetched_at": "sample",
"images": [
"sample"
],
"name": "sample",
"original_price": "sample",
"price": 1,
"price_text": "sample",
"product_id": "sample-id",
"product_key": "sample",
"shop_domain": "sample",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/tokopedia/product?shop_domain=<shop_domain>&product_key=<product_key>" \
-H "x-api-key: $CRAWLORA_API_KEY"