Etsy API

Shopping / OAuth Advanced HTTPS
Varies by plan (check documentation)

Overview

The Etsy API lets you interact with Etsy's handmade marketplace, enabling you to read shop listings, manage your own shop inventory, and handle orders for Etsy sellers. Authentication uses OAuth 2.0, and you can build apps that automate listing updates, sync inventory with other platforms, or analyze shop performance. It is popular for building seller tools and Etsy shop management dashboards.

💡

Beginner Tip

Etsy API v3 requires OAuth 2.0 even for reading public listings, so register an app at developers.etsy.com first. Start by calling the /application/openapi-ping endpoint to confirm your API key is working before attempting any shop or listing endpoints.

Available Data

Etsy data via REST API
JSON-formatted response data
Requires OAuth authentication

Example Response

JSON Response
{
  "status": "success",
  "data": {
    "result": "Data from Etsy",
    "description": "Manage shop and interact with listings",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

listing_id Unique identifier for the Etsy listing
title Title of the listing as shown on the Etsy marketplace
price.amount Price in the smallest currency unit (e.g., cents for USD)
price.currency_code ISO 4217 currency code for the listing price
quantity Number of items available for purchase
url Direct URL to the listing page on etsy.com

Implementation Example

const url = "https://www.etsy.com/developers/documentation/getting_started/api_basics";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "Authorization": "Bearer YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

401 Unauthorized The API key or OAuth token is missing or invalid
Include the x-api-key header for public endpoints or Authorization: Bearer YOUR_TOKEN for user-specific endpoints
403 Forbidden Your app does not have permission to access the requested resource
Check that you requested the necessary OAuth scopes (e.g., listings_r, shops_r) when generating the token
404 Not Found on shop endpoint The shop ID or listing ID provided does not exist
Use the /application/shops endpoint to look up a valid shop_id by shop name before querying listings

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 10/20
🔒 Security 15/15
🛠 Developer XP 3/20
✓ Reliability 10/15

Partially tested on Apr 5, 2026

Technical Specifications

Auth OAuth
HTTPS REQUIRED
CORS UNKNOWN
Category Shopping
Difficulty Advanced
Verified: 2026-04-07

Similar APIs

View All →