Skip to main content

Path Parameters

slug
string
required
The Depop item slug. You can find this in search results (slug) or extract it from a product URL (https://www.depop.com/products/{slug}/).

Query Parameters

market
string
default:"us"
Which market to render the item in — selects the country and currency. See /v1/depop/markets for the full list.

Response

id
string
Depop item id (nullable).
slug
string
Item slug (nullable).
title
string
Item title (nullable).
description
string
Full item description (nullable).
brand
string
Brand name (nullable).
condition
string
Item condition, e.g. Brand new, Used - excellent (nullable).
price
number
Current price in the market’s currency (nullable).
currency
string
ISO 4217 currency code (nullable).
availability
string
Availability status, e.g. in_stock, sold (nullable).
seller_username
string
Username of the seller (nullable).
images
array
Item photo URLs.
url
string
Full URL to the item (nullable).

Example Response

{
  "id": "123456789",
  "slug": "seller123-nike-air-max-90-uk-9",
  "title": "Nike Air Max 90 — UK 9",
  "description": "Worn a handful of times, great condition. No box.",
  "brand": "Nike",
  "condition": "Used - excellent",
  "price": 65.0,
  "currency": "USD",
  "availability": "in_stock",
  "seller_username": "seller123",
  "images": [
    "https://media-photos.depop.com/b1/12345/photo-1.jpg",
    "https://media-photos.depop.com/b1/12345/photo-2.jpg"
  ],
  "url": "https://www.depop.com/products/seller123-nike-air-max-90-uk-9/"
}
Each product-detail request costs 10 credits. Failed requests are not charged.