## etsy/similar

`GET /v1/etsy/similar`

Listings similar to one listing.

*Etsy similar listings*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Etsy listing id, or its URL — e.g. `4429284280` |
| `limit` | no | Requested rows per response, 1–1000. The source may return fewer. Remaining rows from an already purchased page use a saved cursor and cost zero to retrieve for up to one hour; further native source pages use this endpoint’s normal price. — e.g. `5` |
| `cursor` | no | Use the returned cursor unchanged, retaining the original query, filters and limit. Saved mlo1. cursors retrieve already purchased rows at zero credits for up to one hour. A native source cursor, when supplied, starts a normally priced source page. Quote with dry_run before continuing. |
| `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/similar?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
{
  "count": 0,
  "has_more": false,
  "items": [
    {
      "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,
      "section": "example",
      "ships_from": "example",
      "shop": {
        "avatar": "https://example.com/example",
        "id": "example",
        "name": "example",
        "url": "https://example.com/example"
      },
      "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"
    }
  ],
  "listing_id": "example"
}
```

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