# Blink Etsy

> Access Etsy shop listings, orders, and shop data. Use when asked about Etsy sales, product listings, or shop analytics. Requires a linked Etsy connection.

- Skill: `blink-new/blink-etsy` (Agent Skill)
- Install (CLI): `npx skillmds@latest add blink-new/blink-etsy`
- Raw SKILL.md: https://api.skillmd.com/api/skills/blink-new/blink-etsy/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- Author: blink-new (https://skillmd.com/u/blink-new)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/blink-new/blink-etsy

---


# Blink Etsy

Access the user's linked Etsy shop. Provider key: `etsy`.

## Get my user info
```bash
blink connector exec etsy /application/users/me GET
```

## Get my shops
```bash
blink connector exec etsy /application/users/me/shops GET
```

## List shop listings (active)
```bash
blink connector exec etsy /application/shops/{shopId}/listings GET '{"state":"active","limit":20}'
```

## Get a specific listing
```bash
blink connector exec etsy /application/listings/{listingId} GET
```

## Get shop receipts (orders)
```bash
blink connector exec etsy /application/shops/{shopId}/receipts GET '{"limit":20}'
```

## Get a specific order
```bash
blink connector exec etsy /application/shops/{shopId}/receipts/{receiptId} GET
```

## Get shop stats
```bash
blink connector exec etsy /application/shops/{shopId}/stats GET
```

## List shop reviews
```bash
blink connector exec etsy /application/shops/{shopId}/reviews GET '{"limit":10}'
```

## Common use cases
- "How many active listings do I have on Etsy?" → GET /shops/{id}/listings?state=active
- "Show my recent Etsy orders" → GET /shops/{id}/receipts
- "What are my shop's stats?" → GET /shops/{id}/stats
- "List all products in my Etsy shop" → GET /shops/{id}/listings
- "Check reviews for my shop" → GET /shops/{id}/reviews

