Endpoint Playground
Test Crawlora's Search Tokopedia 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/tokopedia/search?q=<q>&sort=3" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Product keyword | |
| page | integer | No | Search page from 1 through 5 | |
| sort | integer | No | 3 | Sort: 3 lowest price, 4 highest price, 5 most reviewed, 9 newest, 23 most relevant |
| filter | array | No | Repeat live key:value filter selections from /tokopedia/search/filters |
{
"code": 200,
"data": {
"browser_rendered": true,
"fetched_at": "sample",
"page": 1,
"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"
}
],
"query": "sample",
"sort": 1,
"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 Tokopedia product cards for a keyword from Tokopedia's public product-search operation. `sort` accepts `3` (lowest price), `4` (highest price), `5` (most reviewed), `9` (newest), or `23` (most relevant). Repeat `filter` as `key:value` using values from `/tokopedia/search/filters`.
{
"code": 200,
"data": {
"browser_rendered": true,
"fetched_at": "sample",
"page": 1,
"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"
}
],
"query": "sample",
"sort": 1,
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/tokopedia/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"