Endpoint Playground
Test Crawlora's Browse a Tokopedia category 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/category?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Canonical Tokopedia category path beginning with /p/ |
{
"code": 200,
"data": {
"category_path": "sample",
"fetched_at": "sample",
"products": [
{
"image_url": "https://example.com/resource",
"name": "sample",
"price": 1,
"price_text": "sample",
"rating": "sample",
"shop_city": "sample",
"shop_name": "sample",
"url": "https://example.com/resource"
}
],
"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 cards from a canonical Tokopedia category path. `path` must begin with `/p/`; use the category page path, not a product or search URL.
{
"code": 200,
"data": {
"category_path": "sample",
"fetched_at": "sample",
"products": [
{
"image_url": "https://example.com/resource",
"name": "sample",
"price": 1,
"price_text": "sample",
"rating": "sample",
"shop_city": "sample",
"shop_name": "sample",
"url": "https://example.com/resource"
}
],
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/tokopedia/category?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"