Endpoint Playground
Test Crawlora's List Shop.app related 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/shop-app/products/4596217053229/related?limit=20" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 4596217053229 | Product id |
| limit | integer | No | 20 | Maximum products, defaults to 20 and supports up to 50 |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "4596217053229",
"products": [
{
"id": "5176966185005",
"title": "Womens Wide Fit New Balance",
"position": 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 related product cards from a public Shop.app product page.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "4596217053229",
"products": [
{
"id": "5176966185005",
"title": "Womens Wide Fit New Balance",
"position": 1
}
]
}
}curl "https://api.crawlora.net/api/v1/shop-app/products/<id>/related" \
-H "x-api-key: $CRAWLORA_API_KEY"