Path Parameters
The seller’s Depop username, e.g. seller123.
Query Parameters
Which market to render the items in — selects the country and currency. See /v1/depop/markets for the full list.
Number of items per page. Range: 1 - 24.
Page number for paginated results (page-based pagination).
Response
Array of the seller’s item cards.
Full URL to the item (nullable).
Username of the seller (nullable).
Item size as displayed (nullable).
Current price in the market’s currency (nullable).
Original price before markdown; null if not discounted.
ISO 4217 currency code (nullable).
Whether the item has been sold (nullable).
Primary item photo URL (nullable).
Pagination info.
Number of items returned on this page.
Whether more pages are available.
The market the items were rendered in.
Example Response
{
"username": "seller123",
"products": [
{
"slug": "seller123-nike-air-max-90-uk-9",
"url": "https://www.depop.com/products/seller123-nike-air-max-90-uk-9/",
"seller_username": "seller123",
"brand": "Nike",
"size": "UK 9",
"price": 65.0,
"original_price": 90.0,
"currency": "USD",
"is_sold": false,
"image": "https://media-photos.depop.com/b1/12345/photo.jpg"
}
],
"meta": {
"result_count": 24,
"page": 1,
"has_more": true
},
"market": "us"
}
Each user-products request costs 10 credits. Failed requests are not charged.