Endpoint Playground
Test Crawlora's Search Wish 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/wish/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search keyword | |
| count | integer | No | Number of results per page, 1 to 70, defaults to 30 | |
| offset | integer | No | Result offset, 0-based, defaults to 0, must be an exact multiple of count up to 3 * count |
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"has_more": true,
"next_offset": 1,
"offset": 1,
"products": [
{
"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"
}
],
"query": "sample",
"result_count": 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.
Searches Wish's product catalog by keyword, with real offset-based pagination. Returns normalized products with price, currency, rating, review count, and merchant id. A query with no matches returns a normal, empty result rather than an error.
{
"code": 200,
"data": {
"count": 1,
"fetched_at": "sample",
"has_more": true,
"next_offset": 1,
"offset": 1,
"products": [
{
"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"
}
],
"query": "sample",
"result_count": 1,
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/wish/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"