Endpoint Playground
Test Crawlora's Shopify 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/shopify/sitemap/urls?url=https%3A%2F%2Fwww.allbirds.com&type=products&limit=50" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | https://www.allbirds.com | Shopify storefront URL |
| type | string | No | products | Sitemap type. Allowed values: all, products, collections, pages, blogs, agentic_discovery, other |
| limit | integer | No | 50 | Maximum URL entries, defaults to 50 and supports up to 250 |
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.allbirds.com",
"source_url": "https://www.allbirds.com",
"type": "products",
"limit": 2,
"urls": [
{
"loc": "https://www.allbirds.com/products/mens-wool-runners",
"type": "products",
"handle": "mens-wool-runners",
"lastmod": "2026-05-31T23:31:08-07:00",
"changefreq": "daily",
"images": [
{
"url": "https://cdn.shopify.com/example.png"
}
]
}
]
}
}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.
Fetches capped URL entries from Shopify child sitemaps matching the requested type.
{
"code": 200,
"msg": "OK",
"data": {
"store_url": "https://www.allbirds.com",
"source_url": "https://www.allbirds.com",
"type": "products",
"limit": 2,
"urls": [
{
"loc": "https://www.allbirds.com/products/mens-wool-runners",
"type": "products",
"handle": "mens-wool-runners",
"lastmod": "2026-05-31T23:31:08-07:00",
"changefreq": "daily",
"images": [
{
"url": "https://cdn.shopify.com/example.png"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/shopify/sitemap/urls?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"