Endpoint Playground
Test Crawlora's Get Quince search suggestions 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/quince/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query prefix |
{
"code": 200,
"msg": "OK",
"data": {
"query": "cash",
"suggestions": [
"cotton cashmere",
"cashmere",
"cashmere cardigan"
]
}
}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 Quince's own search-box typeahead suggestions for a partial query: a flat list of suggested search phrases, no product data. Pass a suggestion straight through to quince-search's own q parameter for product results. A query with no genuine matches returns a well-formed empty result rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"query": "cash",
"suggestions": [
"cotton cashmere",
"cashmere",
"cashmere cardigan"
]
}
}curl "https://api.crawlora.net/api/v1/quince/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"