Endpoint Playground
Test Crawlora's Get Shop.app product 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/products/4596217053229?variant_id=34761278160941" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 4596217053229 | Product id |
| variant_id | string | No | 34761278160941 | Variant id |
{
"code": 200,
"msg": "OK",
"data": {
"product": {
"id": "4596217053229",
"title": "Mens Wide Fit New Balance 624V5 Black Trainers ABZORB",
"shop_name": "Wide Fit Shoes UK",
"price": 1076,
"currency": "HKD"
}
}
}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 normalized public product details from Shop.app.
{
"code": 200,
"msg": "OK",
"data": {
"product": {
"id": "4596217053229",
"title": "Mens Wide Fit New Balance 624V5 Black Trainers ABZORB",
"shop_name": "Wide Fit Shoes UK",
"price": 1076,
"currency": "HKD"
}
}
}curl "https://api.crawlora.net/api/v1/shop-app/products/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"