Endpoint Playground
Test Crawlora's Get a Wish product's full detail 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>" \
-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 |
{
"code": 200,
"data": {
"description": "sample",
"fetched_at": "sample",
"images": [
"sample"
],
"is_sold_out": true,
"name": "sample",
"product_id": "sample-id",
"rating": 1.23,
"rating_count": 1,
"source_url": "https://example.com/resource",
"url": "https://example.com/resource",
"variations": [
{
"color": "sample",
"currency_code": "sample",
"inventory": 1,
"merchant_id": "sample-id",
"merchant_name": "sample",
"merchant_rating": 1.23,
"price": 1.23,
"size": "sample",
"variation_id": "sample-id"
}
]
},
"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 one Wish product's full detail: name, description, sold-out state, aggregate rating, image URLs, and every purchasable variation with its own price, currency, inventory, and merchant. id is taken from a search result's product_id field or a product page's URL. An unrecognized id returns 404.
{
"code": 200,
"data": {
"description": "sample",
"fetched_at": "sample",
"images": [
"sample"
],
"is_sold_out": true,
"name": "sample",
"product_id": "sample-id",
"rating": 1.23,
"rating_count": 1,
"source_url": "https://example.com/resource",
"url": "https://example.com/resource",
"variations": [
{
"color": "sample",
"currency_code": "sample",
"inventory": 1,
"merchant_id": "sample-id",
"merchant_name": "sample",
"merchant_rating": 1.23,
"price": 1.23,
"size": "sample",
"variation_id": "sample-id"
}
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/wish/product/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"