Endpoint Playground
Test Crawlora's Get a Quince product 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/product?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle | string | Yes | Product URL handle, from a search result's products[].handle field |
{
"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"
}
}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 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/quince/product?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"