## etsy/product

`GET /v1/etsy/product`

One Etsy listing: title, description, price, availability, images, tags, materials, category, shop, favourites, views and recent reviews.

*Etsy listing*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Etsy listing id, or its URL — e.g. `4429284280` |
| `currency` | no | Currency code — e.g. `USD` |
| `region` | no | Two-letter region — e.g. `US` |
| `language` | no | Language — e.g. `en-US` |
| `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/product?id=4429284280" \
  -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
{
  "available": false,
  "bestseller": false,
  "category": {
    "taxonomy": "example"
  },
  "created_at": "2026-09-01T12:00:00Z",
  "currency": "example",
  "customizable": false,
  "description": "example",
  "digital": false,
  "favorites": 0,
  "id": "example",
  "image": "https://example.com/example",
  "images": [
    "example"
  ],
  "made_to_order": false,
  "materials": [
    "example"
  ],
  "platform": "example",
  "price": 0,
  "price_usd": 0,
  "quantity": 0,
  "recent_reviews": [],
  "reviews_summary": {
    "average_rating": 0,
    "rating_counts": {
      "All": 0
    },
    "tags": [
      {
        "name": "example",
        "negative": 0,
        "positive": 0
      }
    ],
    "total_reviews": 0
  },
  "section": "example",
  "ships_from": "example",
  "shop": {
    "avatar": "https://example.com/example",
    "id": "example",
    "name": "example",
    "url": "https://example.com/example"
  },
  "similar": [],
  "sold_out": false,
  "state": "example",
  "tags": [
    "example"
  ],
  "title": "example",
  "top_rated": false,
  "type": "example",
  "updated_at": "2026-09-01T12:00:00Z",
  "url": "https://example.com/example",
  "variation_pricing": false,
  "views": 0,
  "vintage": false,
  "when_made": "example"
}
```

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