Endpoint Playground
Test Crawlora's Everlane 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/everlane/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, pages, blogs, agentic_discovery, other |
| limit | integer | No | Maximum URL entries, defaults to 50 and supports up to 250 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.everlane.com",
"source_url": "https://www.everlane.com",
"type": "products",
"limit": 2,
"urls": [
{
"loc": "https://www.everlane.com/products/example-product-handle",
"type": "products",
"handle": "example-product-handle",
"lastmod": "2026-05-31T23:31:08-07:00",
"changefreq": "daily"
}
]
}
}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 Everlane's (https://www.everlane.com) child sitemaps matching the requested type. The storefront URL is fixed server-side.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.everlane.com",
"source_url": "https://www.everlane.com",
"type": "products",
"limit": 2,
"urls": [
{
"loc": "https://www.everlane.com/products/example-product-handle",
"type": "products",
"handle": "example-product-handle",
"lastmod": "2026-05-31T23:31:08-07:00",
"changefreq": "daily"
}
]
}
}curl "https://api.crawlora.net/api/v1/everlane/sitemap/urls" \
-H "x-api-key: $CRAWLORA_API_KEY"