Endpoint Playground
Test Crawlora's List Quince sitemap URLs 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/sitemap/urls?type=all" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| type | string | No | all | Sitemap type. Allowed values: all, products, collections, subcollections, pages |
| limit | integer | No | Maximum URL entries, defaults to 50 and supports up to 250 |
{
"code": 200,
"msg": "OK",
"data": {
"type": "products",
"limit": 50,
"urls": [
{
"loc": "https://www.quince.com/women/plus-size-100-european-linen-shirt-dress",
"type": "products",
"handle": "women/plus-size-100-european-linen-shirt-dress"
}
]
}
}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 capped URL entries from Quince's own sitemaps matching the requested type. Each entry's handle is populated from the URL's own path (tracking/variant query parameters stripped) -- for type products, this is directly the value quince-product's own handle parameter expects.
{
"code": 200,
"msg": "OK",
"data": {
"type": "products",
"limit": 50,
"urls": [
{
"loc": "https://www.quince.com/women/plus-size-100-european-linen-shirt-dress",
"type": "products",
"handle": "women/plus-size-100-european-linen-shirt-dress"
}
]
}
}curl "https://api.crawlora.net/api/v1/quince/sitemap/urls" \
-H "x-api-key: $CRAWLORA_API_KEY"