Quince API endpoint
Use Crawlora's Get a Quince product 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/productReturns normalized product-detail data for one Quince product: title, description, review summary, every selectable option (color swatches with hex codes, sizes), and every color/size variant with its own price, original ("traditional retail") price, stock status, and SKU. handle is the product's URL path on quince.com (for example women/cashmere/cashmere-crewneck-sweater), returned by quince-search's own products[].handle field. 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 |
|---|---|---|---|---|---|
| handle | string | Yes | Product URL handle, from a search result's products[].handle field | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/quince/product" \ -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.
- Unlike some other families' product-detail endpoints, one Quince product-detail response covers every color and size together (Quince's own PDP is not scoped to a single color variant per request). - Each `variants[]` entry's `options` is a flattened map of the option values that select that specific variant, e.g. `{"Color":"Ivory","Size":"XS"}`. - `variants[].in_stock` reflects Quince's own listing status for that variant (`ACTIVE`), not a real-time inventory count. - `options[].values[].hex_code` is only populated for color-swatch options. - An unknown `handle` returns `404`. - A malformed `handle` (not matching Quince's own URL-path shape) returns `400` before any upstream request is made. - `country` (top-level) and each variant's `currency` are always `US`/`USD` -- this endpoint only ever scrapes Quince's US storefront. Example response: ```json { "code": 200, "msg": "OK", "data": { "handle": "women/cashmere/cashmere-crewneck-sweater", "product_id": 76, "title": "Mongolian Cashmere Crewneck Sweater", "description": "The icon, now spring-ready. Our signature cashmere crew is luxuriously soft and surprisingly breathable.", "gender": "female", "product_type": "Crewneck", "average_rating": 4.87, "review_count": 34404, "country": "US", "options": [ { "name": "Color", "values": [ {"value": "Ivory", "display_name": "Ivory", "display_type": "Color", "hex_code": "#F5F0E6"}, {"value": "Heather Grey", "display_name": "Heather Grey", "display_type": "Color", "hex_code": "#808080"} ] }, { "name": "Size", "values": [ {"value": "XS", "display_name": "XS", "display_type": "Text"}, {"value": "S", "display_name": "S", "display_type": "Text"} ] } ], "variants": [ { "id": 3379, "sku": "LB19745", "title": "XS / Ivory", "price": 50, "traditional_retail_price": 148, "currency": "USD", "savings": "66%", "status": "ACTIVE", "in_stock": true, "options": {"Color": "Ivory", "Size": "XS"} } ], "images": [ "https://images.ctfassets.net/afruo3gr1g6h/img1/main.jpg" ], "url": "https://www.quince.com/women/cashmere/cashmere-crewneck-sweater" } } ```
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 |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"handle": "women/cashmere/cashmere-crewneck-sweater",
"product_id": 76,
"title": "Mongolian Cashmere Crewneck Sweater",
"description": "The icon, now spring-ready. Our signature cashmere crew is luxuriously soft and surprisingly breathable.",
"gender": "female",
"product_type": "Crewneck",
"average_rating": 4.87,
"review_count": 34404,
"country": "US",
"options": [
{
"name": "Color",
"values": [
{
"value": "Ivory",
"display_name": "Ivory",
"display_type": "Color",
"hex_code": "#F5F0E6"
},
{
"value": "Heather Grey",
"display_name": "Heather Grey",
"display_type": "Color",
"hex_code": "#808080"
}
]
},
{
"name": "Size",
"values": [
{
"value": "XS",
"display_name": "XS",
"display_type": "Text"
},
{
"value": "S",
"display_name": "S",
"display_type": "Text"
}
]
}
],
"variants": [
{
"id": 3379,
"sku": "LB19745",
"title": "XS / Ivory",
"price": 50,
"traditional_retail_price": 148,
"currency": "USD",
"savings": "66%",
"status": "ACTIVE",
"in_stock": true,
"options": {
"Color": "Ivory",
"Size": "XS"
}
}
],
"images": [
"https://images.ctfassets.net/afruo3gr1g6h/img1/main.jpg"
],
"url": "https://www.quince.com/women/cashmere/cashmere-crewneck-sweater"
}
}Request schema
No body schema
Response schema
#/definitions/quince.productResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | quince.ProductResponse | No | ||||
| data.average_rating | number | No | ||||
| data.country | string | No | ||||
| data.description | string | No | ||||
| data.fetched_at | string | No | ||||
| data.gender | string | No | ||||
| data.handle | string | No | ||||
| data.images | array | No | ||||
| data.options | array | No | ||||
| data.options[].name | string | No | ||||
| data.options[].values | array | No | ||||
| data.options[].values[].display_name | string | No | ||||
| data.options[].values[].display_type | string | No | ||||
| data.options[].values[].hex_code | string | No | ||||
| data.options[].values[].value | string | No | ||||
| data.product_id | integer | No | ||||
| data.product_type | string | No | ||||
| data.review_count | integer | No | ||||
| data.source_url | string | No | ||||
| data.title | string | No | ||||
| data.url | string | No | ||||
| data.variants | array | No | ||||
| data.variants[].currency | string | No | ||||
| data.variants[].id | integer | No | ||||
| data.variants[].in_stock | boolean | No | ||||
| data.variants[].options | object | No | ||||
| data.variants[].price | number | No | ||||
| data.variants[].savings | string | No | ||||
| data.variants[].sku | string | No | ||||
| data.variants[].status | string | No | ||||
| data.variants[].title | string | No | ||||
| data.variants[].traditional_retail_price | number | 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/product" \
-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