Endpoint Playground
Test Crawlora's Pristine Marketplace Search Suggest 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/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| types | string | No | Comma-separated suggestion types. Allowed values: product, collection, query | |
| limit | integer | No | Maximum results per type, defaults to 10 and supports up to 20 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.pristinemarketplace.com",
"source_url": "https://www.pristinemarketplace.com",
"query": "jordan",
"types": [
"product",
"collection",
"query"
],
"limit": 10,
"products": [
{
"handle": "jordan-love-signed-green-bay-packers-funko-pop-307",
"title": "Jordan Love Signed Green Bay Packers Funko Pop #307"
}
],
"collections": [
{
"handle": "michael-jordan",
"title": "Michael Jordan Memorabilia"
}
],
"queries": [
{
"text": "jordan",
"url": "https://www.pristinemarketplace.com/search?q=jordan"
}
]
}
}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 products, collections, and query suggestions from Pristine Marketplace's (https://www.pristinemarketplace.com) credential-free predictive search Ajax endpoint. The storefront URL is fixed server-side.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.pristinemarketplace.com",
"source_url": "https://www.pristinemarketplace.com",
"query": "jordan",
"types": [
"product",
"collection",
"query"
],
"limit": 10,
"products": [
{
"handle": "jordan-love-signed-green-bay-packers-funko-pop-307",
"title": "Jordan Love Signed Green Bay Packers Funko Pop #307"
}
],
"collections": [
{
"handle": "michael-jordan",
"title": "Michael Jordan Memorabilia"
}
],
"queries": [
{
"text": "jordan",
"url": "https://www.pristinemarketplace.com/search?q=jordan"
}
]
}
}curl "https://api.crawlora.net/api/v1/pristine-marketplace/search/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"