Endpoint Playground
Test Crawlora's Search or browse Quince 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/quince/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Free-text search query | |
| department | string | No | Business department facet filter, from quince-categories' own business_departments[].value field | |
| category | string | No | Category facet filter, from quince-categories' own categories[].value field | |
| material | string | No | Material facet filter, from quince-categories' own materials[].value field | |
| color | string | No | Primary color facet filter, from quince-categories' own colors[].value field | |
| size | string | No | Size facet filter, from quince-categories' own sizes[].value field | |
| min_price | number | No | Minimum price (inclusive), in USD | |
| max_price | number | No | Maximum price (inclusive), in USD | |
| page | integer | No | One-based page number, defaults to 1 | |
| limit | integer | No | Results per page, defaults to 24, maximum 100 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "cashmere sweater",
"country": "US",
"page": 1,
"limit": 24,
"count": 1,
"total_results": 1974,
"total_pages": 988,
"products": [
{
"product_id": 2067473662063,
"handle": "women/cashmere/cashmere-crewneck-sweater",
"title": "Mongolian Cashmere Crewneck Sweater",
"gender": "female",
"color": "Heather Grey",
"primary_colors": [
"Grey"
],
"material": [
"Cashmere"
],
"business_department": "Women",
"department": "Sweaters",
"category": "Apparel",
"product_type": "Tops",
"sizes": [
"XS",
"S",
"M",
"L",
"XL"
],
"min_price": 50,
"max_price": 50,
"currency": "USD",
"in_stock": true,
"image_url": "https://images.quince.com/6raQtTk7L6V5MruegXEimT/main.jpg",
"url": "https://www.quince.com/women/cashmere/cashmere-crewneck-sweater"
}
]
}
}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 or browses Quince's (quince.com) product catalog through its own public Algolia search index. q, department, category, material, color, size, min_price, and max_price are all optional and combine as an AND -- unlike some other families' search/category-browse split, a free-text q can be combined with any of the facet filters in the same request, or every field can be omitted to browse the full catalog by Quince's own relevance/popularity ranking. department accepts one of the values quince-categories' own business_departments[].value field returns (for example Women, Men, Kids & Baby, Home, CPG, Emerging); category, material, color, and size similarly accept values from quince-categories' own categories[].value/materials[].value/colors[].value/sizes[].value fields (or quince-navigation's own browsable category/subcategory slugs for a curated, hierarchical alternative to the flat category facet). Keyword search is Algolia's own typo-tolerant relevance ranking, not a guaranteed exact match. A query with genuinely zero matches (for example a nonsense string) returns a well-formed empty result rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"query": "cashmere sweater",
"country": "US",
"page": 1,
"limit": 24,
"count": 1,
"total_results": 1974,
"total_pages": 988,
"products": [
{
"product_id": 2067473662063,
"handle": "women/cashmere/cashmere-crewneck-sweater",
"title": "Mongolian Cashmere Crewneck Sweater",
"gender": "female",
"color": "Heather Grey",
"primary_colors": [
"Grey"
],
"material": [
"Cashmere"
],
"business_department": "Women",
"department": "Sweaters",
"category": "Apparel",
"product_type": "Tops",
"sizes": [
"XS",
"S",
"M",
"L",
"XL"
],
"min_price": 50,
"max_price": 50,
"currency": "USD",
"in_stock": true,
"image_url": "https://images.quince.com/6raQtTk7L6V5MruegXEimT/main.jpg",
"url": "https://www.quince.com/women/cashmere/cashmere-crewneck-sweater"
}
]
}
}curl "https://api.crawlora.net/api/v1/quince/search" \
-H "x-api-key: $CRAWLORA_API_KEY"