Endpoint Playground
Test Crawlora's Analyze Shop.app query results 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/analysis?query=sneakers&limit=20&in_stock=true&on_sale=false&deep_search=false" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | sneakers | Search query |
| limit | integer | No | 20 | Maximum products to analyze, defaults to 20 and supports up to 50 |
| in_stock | boolean | No | true | Request in-stock products |
| on_sale | boolean | No | false | Request sale products |
| deep_search | boolean | No | false | Enable Shop.app deep search mode |
{
"code": 200,
"msg": "OK",
"data": {
"query": "sneakers",
"products_count": 5,
"groups_count": 2,
"shops_count": 3,
"currencies": [
"USD"
],
"prices_by_currency": [
{
"currency": "USD",
"count": 5,
"min": 40,
"max": 100,
"average": 67.5
}
],
"sale_count": 2,
"discounts": {
"min_percent": 20,
"max_percent": 50,
"average_percent": 35
},
"top_shops": [
{
"shop_id": "62696",
"shop_name": "BILLY Footwear",
"count": 2
}
],
"sampled_product_ids": [
"8075903107261",
"7093164834901"
]
}
}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 a market snapshot derived from Shop.app search results, including price ranges, currencies, sale counts, discounts, and top shops. Limit defaults to 20 and accepts values up to 50.
{
"code": 200,
"msg": "OK",
"data": {
"query": "sneakers",
"products_count": 5,
"groups_count": 2,
"shops_count": 3,
"currencies": [
"USD"
],
"prices_by_currency": [
{
"currency": "USD",
"count": 5,
"min": 40,
"max": 100,
"average": 67.5
}
],
"sale_count": 2,
"discounts": {
"min_percent": 20,
"max_percent": 50,
"average_percent": 35
},
"top_shops": [
{
"shop_id": "62696",
"shop_name": "BILLY Footwear",
"count": 2
}
],
"sampled_product_ids": [
"8075903107261",
"7093164834901"
]
}
}curl "https://api.crawlora.net/api/v1/shop-app/analysis?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"