Endpoint Playground
Test Crawlora's Get a Wish product's related items 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/wish/product/<id>/related" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Wish product id, a 24-character hex id from a search result's product_id field | |
| count | integer | No | Number of items to return per rail, 1 to 70, defaults to 10 |
{
"code": 200,
"data": {
"fetched_at": "sample",
"product_id": "sample-id",
"shelves": [
{
"feed_mode": "similar",
"has_more": true,
"items": [
{
"currency_code": "sample",
"image_url": "https://example.com/resource",
"merchant_id": "sample-id",
"name": "sample",
"price": 1.23,
"product_id": "sample-id",
"rating": 1.23,
"review_count": 1,
"url": "https://example.com/resource"
}
],
"subtitle": "Similar Items with 5-7 Day Shipping",
"title": "Faster Shipping"
}
],
"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 a Wish product's related-item rails: shelves of similar products, grouped by rail (e.g. general similar items, a faster-shipping-eligible subset). id is taken from a search result's product_id field or a product page's URL. A faster-shipping rail with no eligible items, or a nonexistent id, returns a normal, empty result rather than an error.
{
"code": 200,
"data": {
"fetched_at": "sample",
"product_id": "sample-id",
"shelves": [
{
"feed_mode": "similar",
"has_more": true,
"items": [
{
"currency_code": "sample",
"image_url": "https://example.com/resource",
"merchant_id": "sample-id",
"name": "sample",
"price": 1.23,
"product_id": "sample-id",
"rating": 1.23,
"review_count": 1,
"url": "https://example.com/resource"
}
],
"subtitle": "Similar Items with 5-7 Day Shipping",
"title": "Faster Shipping"
}
],
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/wish/product/<id>/related" \
-H "x-api-key: $CRAWLORA_API_KEY"