Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
vm0-ai avatar

Etsy

  • 46 installs
  • 76 repo stars
  • Updated August 4, 2026
  • vm0-ai/vm0-skills

Helps with ai & agent building tasks.

About

etsy is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • etsy
  • AI & Agent Building
  • AI-coding skill

Etsy by the numbers

  • 46 all-time installs (skills.sh)
  • +3 installs in the week ending Jul 27, 2026 (Skillselion tracking)
  • Ranked #7,568 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/vm0-ai/vm0-skills --skill etsy

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs46
repo stars76
Last updatedAugust 4, 2026
Repositoryvm0-ai/vm0-skills

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Troubleshooting

If requests fail, run zero doctor check-connector --env-name ETSY_TOKEN or zero doctor check-connector --url https://openapi.etsy.com/v3/application/openapi-ping --method GET

Authentication

All requests require your API credentials passed in the header:

x-api-key: $ETSY_TOKEN

ETSY_TOKEN must be set to <keystring>:<shared_secret> — both values joined with a colon. Get them from the Etsy Developer Portal under Your Apps.

Note: Shop receipt and transaction endpoints require OAuth 2.0 and are not accessible with an API key alone.

Environment Variables

VariableDescription
ETSY_TOKENEtsy API credentials in keystring:shared_secret format

Key Endpoints

Base URL: https://openapi.etsy.com

1. Ping / Health Check

curl -s "https://openapi.etsy.com/v3/application/openapi-ping" --header "x-api-key: $ETSY_TOKEN"

2. Get Shop by Shop ID

curl -s "https://openapi.etsy.com/v3/application/shops/<your-shop-id>" --header "x-api-key: $ETSY_TOKEN"

Response includes shop name, URL, listing count, and seller details.

3. Find Shops by Name

curl -s "https://openapi.etsy.com/v3/application/shops?shop_name=<your-shop-name>&limit=10" --header "x-api-key: $ETSY_TOKEN"

4. List Active Listings for a Shop

curl -s "https://openapi.etsy.com/v3/application/shops/<your-shop-id>/listings/active?limit=25" --header "x-api-key: $ETSY_TOKEN"

Returns listing IDs, titles, prices, quantities, and URLs.

5. Get a Single Listing

curl -s "https://openapi.etsy.com/v3/application/listings/<your-listing-id>" --header "x-api-key: $ETSY_TOKEN"

6. Search Active Listings (All Shops)

Write to /tmp/etsy_search.json is not needed — use query parameters:

curl -s "https://openapi.etsy.com/v3/application/listings/active?keywords=<your-search-term>&limit=25&sort_on=score" --header "x-api-key: $ETSY_TOKEN"

Key parameters:

  • keywords — search terms
  • limit — results per page (max 100)
  • offset — pagination offset
  • sort_onscore, created, price, updated
  • sort_orderasc or desc
  • min_price / max_price — price range filter

7. Get Listing Images

curl -s "https://openapi.etsy.com/v3/application/listings/<your-listing-id>/images" --header "x-api-key: $ETSY_TOKEN"

8. Get Listing Inventory

curl -s "https://openapi.etsy.com/v3/application/listings/<your-listing-id>/inventory" --header "x-api-key: $ETSY_TOKEN"

Guidelines

1. Rate Limits: Etsy enforces rate limits per API key — avoid tight polling loops 2. Receipts/Orders: Transaction and receipt endpoints require OAuth 2.0 authorization, not API key auth 3. Pagination: Use limit (max 100) and offset parameters for large result sets 4. Listing States: Use /listings/active for publicly visible listings; other states (draft, expired) require OAuth

API Reference

  • Documentation: https://developers.etsy.com/documentation/
  • API Reference: https://developers.etsy.com/documentation/reference/
  • Developer Portal: https://www.etsy.com/developers/your-apps

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.