Quince API endpoint
Use Crawlora's Search or browse Quince products API to extract supported public Quince data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/quince/searchSearches 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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| 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 | 1 | One-based page number, defaults to 1 | |
| limit | integer | No | 24 | Results per page, defaults to 24, maximum 100 | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/quince/search?q=coffee&page=1&limit=10" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- 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 (`count: 0`, `products: []`) rather than an error. - Each product's `handle` is the value `quince-product`'s own `handle` parameter expects for full product-detail data. - `country` (top-level) and each product's `currency` are always `US`/`USD` -- this endpoint only ever queries Quince's US storefront/index. Example response: ```json { "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.0, "max_price": 50.0, "currency": "USD", "in_stock": true, "image_url": "https://images.quince.com/6raQtTk7L6V5MruegXEimT/main.jpg", "url": "https://www.quince.com/women/cashmere/cashmere-crewneck-sweater" } ] } } ``` A department-filtered browse request (`department=Home`, no `q`) returns the same shape, ordered by Quince's own default ranking within that department.
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/quince.searchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | quince.SearchResponse | No | ||||
| data.category | string | No | ||||
| data.color | string | No | ||||
| data.count | integer | No | ||||
| data.country | string | No | ||||
| data.department | string | No | ||||
| data.fetched_at | string | No | ||||
| data.limit | integer | No | ||||
| data.material | string | No | ||||
| data.max_price | number | No | ||||
| data.min_price | number | No | ||||
| data.page | integer | No | ||||
| data.products | array | No | ||||
| data.products[].business_department | string | No | ||||
| data.products[].category | string | No | ||||
| data.products[].color | string | No | ||||
| data.products[].currency | string | No | ||||
| data.products[].department | string | No | ||||
| data.products[].description | string | No | ||||
| data.products[].gender | string | No | ||||
| data.products[].handle | string | No | ||||
| data.products[].image_url | string | No | ||||
| data.products[].in_stock | boolean | No | ||||
| data.products[].material | array | No | ||||
| data.products[].max_price | number | No | ||||
| data.products[].min_price | number | No | ||||
| data.products[].primary_colors | array | No | ||||
| data.products[].product_id | integer | No | ||||
| data.products[].product_type | string | No | ||||
| data.products[].sizes | array | No | ||||
| data.products[].title | string | No | ||||
| data.products[].url | string | No | ||||
| data.query | string | No | ||||
| data.size | string | No | ||||
| data.source_url | string | No | ||||
| data.total_pages | integer | No | ||||
| data.total_results | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/quince/search?q=coffee&page=1&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms