Endpoint Playground
Test Crawlora's Etsy Shop Listings 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/etsy/shop/<id>/listings" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Numeric Etsy shop id or shop name | |
| q | string | No | Keyword filter within the shop's own catalog | |
| offset | integer | No | 0-based listing offset | |
| limit | integer | No | Page size (default 24) |
{
"code": 200,
"msg": "OK",
"data": {
"shop_id": "87654321",
"shop_name": "gaguatelier",
"query": "mug",
"offset": 0,
"listings": [
{
"listing_id": "1044347578",
"title": "Handmade Ceramic Mug",
"price": "$29.99",
"price_int": 2999,
"currency": "USD"
}
]
}
}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 shop's listing catalog, optionally filtered by keyword. Accepts a numeric shop id or a shop name.
{
"code": 200,
"msg": "OK",
"data": {
"shop_id": "87654321",
"shop_name": "gaguatelier",
"query": "mug",
"offset": 0,
"listings": [
{
"listing_id": "1044347578",
"title": "Handmade Ceramic Mug",
"price": "$29.99",
"price_int": 2999,
"currency": "USD"
}
]
}
}curl "https://api.crawlora.net/api/v1/etsy/shop/<id>/listings" \
-H "x-api-key: $CRAWLORA_API_KEY"