Endpoint Playground
Test Crawlora's Pristine Marketplace Search 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/pristine-marketplace/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query text | |
| page | integer | No | 1-based page, defaults to 1 | |
| limit | integer | No | Maximum products, defaults to 50 and supports up to 250, but never exceeds the storefront's own fixed 16-per-page grid |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.pristinemarketplace.com",
"source_url": "https://www.pristinemarketplace.com/search?q=jordan&type=product",
"query": "jordan",
"page": 1,
"limit": 16,
"total_count": 413,
"total_pages": 26,
"products": [
{
"handle": "bulls-michael-jordan-signed-nike-air-jordan-v-size-13-shoes-w-original-box-bas",
"title": "Bulls Michael Jordan Signed Nike Air Jordan V Size 13 Shoes w/ Original Box BAS",
"url": "https://www.pristinemarketplace.com/products/bulls-michael-jordan-signed-nike-air-jordan-v-size-13-shoes-w-original-box-bas",
"price": 26999,
"available": true
}
]
}
}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 normalized products from Pristine Marketplace's (https://www.pristinemarketplace.com) own native full-text search results page, distinct from `/pristine-marketplace/search/suggest`'s predictive suggestions. The storefront URL is fixed server-side. Per-page size is fixed by the storefront's own theme (16 products per page) and is not adjustable; `limit` is honored only as an upper bound on the returned page.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.pristinemarketplace.com",
"source_url": "https://www.pristinemarketplace.com/search?q=jordan&type=product",
"query": "jordan",
"page": 1,
"limit": 16,
"total_count": 413,
"total_pages": 26,
"products": [
{
"handle": "bulls-michael-jordan-signed-nike-air-jordan-v-size-13-shoes-w-original-box-bas",
"title": "Bulls Michael Jordan Signed Nike Air Jordan V Size 13 Shoes w/ Original Box BAS",
"url": "https://www.pristinemarketplace.com/products/bulls-michael-jordan-signed-nike-air-jordan-v-size-13-shoes-w-original-box-bas",
"price": 26999,
"available": true
}
]
}
}curl "https://api.crawlora.net/api/v1/pristine-marketplace/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"