Etsy has 90M+ active buyers and millions of handmade/vintage product listings.
Etsy Open API
Etsy has an official API (free, key required):
async function searchEtsy(query) {
const url = `https://openapi.etsy.com/v3/application/listings/active?keywords=${encodeURIComponent(query)}&limit=25`;
const res = await fetch(url, {
headers: { "x-api-key": "YOUR_API_KEY" }
});
return res.json();
}
Data Available
- Product title, price, description
- Photos and tags
- Seller name and shop URL
- Review count and rating
- Category and materials
- Shipping info
Use Cases
- Product research — what sells on Etsy?
- Price analysis — competitive pricing strategy
- Trend spotting — emerging product categories
- Seller research — successful shop patterns
- Keyword research — what buyers search for
Related Guides
Need Etsy data extracted? Products, sellers, reviews — $20. Email: Spinov001@gmail.com | Hire me
Top comments (0)