Endpoint Playground
Test Crawlora's List Shop.app shop 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/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 |
| 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",
"sort_by": "MOST_SALES",
"products": [
{
"id": "4796042281039",
"title": "Aiden Black Leather 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 profile. sort_by allowed values: MOST_SALES, PRICE_LOW_TO_HIGH, PRICE_HIGH_TO_LOW, RELEVANCE.
{
"code": 200,
"msg": "OK",
"data": {
"shop_handle": "marcnolan",
"sort_by": "MOST_SALES",
"products": [
{
"id": "4796042281039",
"title": "Aiden Black Leather Combat Boots",
"position": 1
}
]
}
}curl "https://api.crawlora.net/api/v1/shop-app/shops/<handle>/products" \
-H "x-api-key: $CRAWLORA_API_KEY"