Endpoint Playground
Test Crawlora's Get the Shop.app shop for a 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/shop" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 4596217053229 | Product id |
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "4596217053229",
"shop": {
"id": "1084107",
"handle": "n1r478fp0h",
"name": "Wide Fit Shoes UK"
}
}
}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.
Resolves the public Shop.app merchant profile for a product id.
{
"code": 200,
"msg": "OK",
"data": {
"product_id": "4596217053229",
"shop": {
"id": "1084107",
"handle": "n1r478fp0h",
"name": "Wide Fit Shoes UK"
}
}
}curl "https://api.crawlora.net/api/v1/shop-app/products/<id>/shop" \
-H "x-api-key: $CRAWLORA_API_KEY"