## etsy/shop-products

`GET /v1/etsy/shop-products`

The listings of an Etsy shop, with price, discount, badges and processing time.

*Etsy shop listings*

| Parameter | Required | Description |
| --- | --- | --- |
| `shop` | yes | Shop name, numeric id or URL — e.g. `Qorux` |
| `page` | no | Page number — e.g. `1` |
| `limit` | no | Up to 48 per page — e.g. `24` |
| `section_id` | no | A section id from etsy/shop |
| `sort` | no | created, price_asc, price_desc or score — e.g. `created` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 4 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/etsy/shop-products?shop=Qorux" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "count": 0,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "available": false,
      "bestseller": false,
      "created_at": "2026-09-01T12:00:00Z",
      "currency": "example",
      "customizable": false,
      "digital": false,
      "has_video": false,
      "id": "example",
      "image": "https://example.com/example",
      "images": [
        "example"
      ],
      "made_to_order": false,
      "materials": [],
      "platform": "example",
      "price": 0,
      "quantity": 0,
      "shop": {
        "id": "example",
        "name": "example",
        "url": "https://example.com/example"
      },
      "sold_out": false,
      "star_seller": false,
      "tags": [],
      "thumbnail": "example",
      "title": "example",
      "type": "example",
      "url": "https://example.com/example",
      "vintage": false
    }
  ],
  "page": 0,
  "shop": "example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/etsy/shop-products#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/etsy/shop-products.json)
