Endpoint Playground
Test Crawlora's Tokopedia home recommendations 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/home" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| tab_id | string | No | Current ID from /tokopedia/home/tabs | |
| page | integer | No | Recommendation page from 1 through 5 |
{
"code": 200,
"data": {
"browser_rendered": true,
"fetched_at": "sample",
"has_next_page": true,
"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"
}
],
"tab": {
"id": "sample-id",
"image_url": "https://example.com/resource",
"name": "sample"
}
},
"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-card recommendations for a current Tokopedia home tab. Omit `tab_id` for the first available tab; discover other tabs through `/tokopedia/home/tabs`.
{
"code": 200,
"data": {
"browser_rendered": true,
"fetched_at": "sample",
"has_next_page": true,
"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"
}
],
"tab": {
"id": "sample-id",
"image_url": "https://example.com/resource",
"name": "sample"
}
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/tokopedia/home" \
-H "x-api-key: $CRAWLORA_API_KEY"