Etsy
Listings

Etsy Listings API

Sync listings data with Etsy through Apideck's unified API. One integration, instant access.

In Apideck, this resource is called Products (API: products)

Supported Operations for Etsy Listings

List, Get operations available through our unified API

list
get
create
update
delete

Supported Fields

13 fields

Fields available for Etsy Listings

idnamedescriptionstatuspriceinventory_quantityimagesweightweight_unitvariantstagscreated_atupdated_at

API Model Preview

Sample response structure for listings

{
  "id": "12345",
  "name": "Example Name",
  "description": "Example Description",
  "status": "active",
  "price": 100,
  "inventory_quantity": 100,
  "images": "string",
  "weight": "string",
  "weight_unit": "string",
  "variants": "string",
  "tags": [
    {
      "id": "12345",
      "name": "Tag Name"
    }
  ],
  "created_at": "2024-01-15T10:30:00.000Z",
  "updated_at": "2024-01-15T10:30:00.000Z"
}

Quick Start Example

Start syncing Etsy listings in minutes

Node.js
import { Apideck } from '@apideck/unify'

const apideck = new Apideck({
  apiKey: process.env.APIDECK_API_KEY,
  appId: 'YOUR_APP_ID',
  consumerId: 'YOUR_CONSUMER_ID'
})

// List listings from Etsy
const result = await apideck.ecommerce.products.list({
  serviceId: 'etsy'
})

for await (const page of result) {
  console.log(page)
}
// Returns unified listings data

Etsy SDKs

Build Etsy integrations in your favorite language with our official SDKs.

Launch accounting integrations in weeks, not months

Sign Up