Endpoint Playground
Test Crawlora's Get a Quince product's FAQ content 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/faq?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",
"questions": [
{
"question": "How does the color of Mongolian Cashmere Crewneck Sweater look in person?",
"answer": "The 12-gauge jersey knit in 100% Grade-A Mongolian cashmere creates a smooth, even surface that lets each color read rich and true. Ribbed cuffs and hem add subtle texture without muting the hue."
}
]
}
}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 a Quince product's own question/answer content (e.g. sizing, care, fit), from the same structured product data quince-product-reviews uses. handle is the same value quince-product accepts. Not every product carries FAQ content -- a product with none returns a well-formed empty result.
{
"code": 200,
"msg": "OK",
"data": {
"handle": "women/cashmere/cashmere-crewneck-sweater",
"questions": [
{
"question": "How does the color of Mongolian Cashmere Crewneck Sweater look in person?",
"answer": "The 12-gauge jersey knit in 100% Grade-A Mongolian cashmere creates a smooth, even surface that lets each color read rich and true. Ribbed cuffs and hem add subtle texture without muting the hue."
}
]
}
}curl "https://api.crawlora.net/api/v1/quince/product/faq?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"