Endpoint Playground
Test Crawlora's List Shop.app shop locations 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/locations?limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle (path) | string | Yes | marcnolan | Shop handle |
| limit | integer | No | 10 | Maximum locations, defaults to 10 and supports up to 50 |
{
"code": 200,
"msg": "OK",
"data": {
"shop_handle": "marcnolan",
"locations": [
{
"name": "NYC",
"latitude": 40.7205232,
"longitude": -73.9961032,
"address": {
"city": "New York",
"country": "US"
}
}
]
}
}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 retail locations for a Shop.app merchant profile.
{
"code": 200,
"msg": "OK",
"data": {
"shop_handle": "marcnolan",
"locations": [
{
"name": "NYC",
"latitude": 40.7205232,
"longitude": -73.9961032,
"address": {
"city": "New York",
"country": "US"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/shop-app/shops/<handle>/locations" \
-H "x-api-key: $CRAWLORA_API_KEY"