Endpoint Playground
Test Crawlora's List Shop.app collection products 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/shop-app/shops/marcnolan/collections/292518002767/products?limit=30&sort_by=MOST_SALES&in_stock=true" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | marcnolan | Shop handle |
| collection_id (path) | string | Yes | 292518002767 | Collection id |
| limit | integer | No | 30 | Maximum products, defaults to 30 and supports up to 60 |
| sort_by | string | No | MOST_SALES | Sort mode |
| in_stock | boolean | No | true | Request in-stock products |
{
"code": 200,
"msg": "OK",
"data": {
"shop_handle": "marcnolan",
"collection_id": "292518002767",
"products": [
{
"id": "1372981887055",
"title": "Belmont Mahogany Leather Wingtip Combat Boots",
"position": 1
}
]
}
}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 public product cards from a Shop.app merchant collection. sort_by allowed values: MOST_SALES, PRICE_LOW_TO_HIGH, PRICE_HIGH_TO_LOW, RELEVANCE.
{
"code": 200,
"msg": "OK",
"data": {
"shop_handle": "marcnolan",
"collection_id": "292518002767",
"products": [
{
"id": "1372981887055",
"title": "Belmont Mahogany Leather Wingtip Combat Boots",
"position": 1
}
]
}
}curl "https://api.crawlora.net/api/v1/shop-app/shops/<handle>/collections/<collection_id>/products" \
-H "x-api-key: $CRAWLORA_API_KEY"