Skip to content
scrapeatlas.Dashboard

List a Depop shop's sold items

Try in Playground

Return one page of a seller's sold items (most recent first) with cursor pagination; sold cards additionally carry the category path and sold-out size variants.

GET/v1/depop/shop/soldx-api-key
x-api-keystringrequiredheader

Your ScrapeAtlas customer key. Create one on /account/ and set SCRAPEATLAS_API_KEY.

Query parameters
5
handlestringquery

Depop username as it appears in depop.com/{handle}/ (letters, digits, underscore, full stop; matched in lowercase); provide exactly one of handle, url or user_id.

Exampleexamplecloset
urlstringquery

Full shop URL: https://www.depop.com/{handle}/.

max 2048 chars

user_idstringquery

Numeric seller ID (skips the profile read; shop.username is then null).

limitintegerdefault: 24query

Items per page, 1-100 (default 24).

default: 24 · 1 – 100

cursorstringquery

Opaque caller-carried cursor from a previous nextCursor.

Response fields
94
requestIdstring

Request correlation UUID.

Upstream request count, decoded response bytes and elapsed milliseconds.

accounting.upstreamRequestsinteger

Always included.

≥ 0

accounting.responseBytesinteger

Always included.

≥ 0

accounting.durationMsnumber

Always included.

≥ 0

successboolean

True when usable public data is returned; inspect status and coverage for omissions.

statusenum

success, partial, failed or challenged. HTTP 200 can be partial.

one of: success, partial

sourceUrlstring

The public Depop API URL the response describes (fixed origins, validated parameters).

absolute HTTPS URL

fetchedAtstring

UTC retrieval timestamp.

Retrieval coverage and warning codes for this response.

coverage.sourcestring

Always included.

coverage.completeboolean

Always included.

coverage.warningsenum[]

Always included.

Numeric seller ID and username (null when user_id was given).

shop.idinteger

Always included.

≥ 0

shop.usernamestringnullable

Always included.

Always included.

up to 100 items

items.idinteger

Always included.

≥ 0

items.slugstringnullable

Always included.

items.urlstringnullable

Always included.

items.descriptionstring

Always included.

Always included.

items.brand.idintegernullable

Always included.

items.brand.namestringnullable

Always included.

items.categorystringnullable

Always included.

items.categoryPathstring[]nullable

Always included.

items.statusstring

Always included.

items.activeStatusstringnullable

Always included.

items.isSoldboolean

Always included.

Always included.

items.price.currentnumbernullable

Always included.

items.price.originalnumbernullable

Always included.

items.price.currencystringnullable

Always included.

items.price.isReducedboolean

Always included.

Always included.

items.shipping.costnumbernullable

Always included.

items.shipping.methodstringnullable

Always included.

items.shipping.boundarystringnullable

Always included.

items.shipping.payerstringnullable

Always included.

items.shipping.parcelSizestringnullable

Always included.

items.imagesstring[]

Always included.

Always included.

up to 20 items

items.imageDetails.idintegernullable

Always included.

items.imageDetails.originalWidthintegernullable

Always included.

items.imageDetails.originalHeightintegernullable

Always included.

items.imageDetails.isSquarebooleannullable

Always included.

items.imageDetails.formatsobject

Always included.

Always included.

items.priceBreakdown.itemnumbernullable

Always included.

items.priceBreakdown.buyerFeenumbernullable

Always included.

items.priceBreakdown.taxnumbernullable

Always included.

items.priceBreakdown.taxTypestringnullable

Always included.

items.priceBreakdown.shippingnumbernullable

Always included.

Always included.

items.priceBreakdown.totalIncludes.buyerFeebooleannullable

Always included.

items.priceBreakdown.totalIncludes.shippingbooleannullable

Always included.

items.priceBreakdown.totalIncludes.taxbooleannullable

Always included.

Always included.

items.priceBreakdown.headlineIncludes.buyerFeebooleannullable

Always included.

items.priceBreakdown.headlineIncludes.shippingbooleannullable

Always included.

items.priceBreakdown.headlineIncludes.taxbooleannullable

Always included.

items.originalNationalShippingCostnumbernullable

Always included.

Always included.

Always included.

items.shippingDiscounts.nationalShipping.amountnumbernullable

Always included.

items.shippingDiscounts.nationalShipping.typestringnullable

Always included.

items.brandSlugstringnullable

Always included.

items.isKnownBrandbooleannullable

Always included.

items.materialsstring[]

Always included.

items.conditionstringnullable

Always included.

items.coloursstring[]

Always included.

items.stylesstring[]

Always included.

items.groupstringnullable

Always included.

items.productTypestringnullable

Always included.

items.genderstringnullable

Always included.

items.isKidsbooleannullable

Always included.

items.additionalAttributesobject

Always included.

Always included.

items.sizes.idintegernullable

Always included.

items.sizes.namestring

Always included.

items.sizes.quantityintegernullable

Always included.

items.sizes.statusstringnullable

Always included.

items.variantSetIdintegernullable

Always included.

items.listedQuantityintegernullable

Always included.

items.locationstringnullable

Always included.

items.countrystringnullable

Always included.

items.sellerIdintegernullable

Always included.

items.isBoostedbooleannullable

Always included.

items.boostedAtstringnullable

Always included.

items.likeCountintegernullable

Always included.

items.createdAtstringnullable

Always included.

items.updatedAtstringnullable

Always included.

hasMoreboolean

Always included.

nextCursorstringnullable

Always included.

HTTP 200 returns the success variant. Check status: partial means usable data with warnings, and failed or challenged requests carry a failure object described in Errors & responses.

Error codes
12
HTTPfailure.codeMeaning
400invalid_requestMissing, duplicate, ambiguous or unsupported parameters, unsupported URL forms, sorts, markets, filter ids or cursors (Depop rejects a malformed cursor with HTTP 400).
401unauthorizedInvalid API key.
403restrictedDepop requires an account session for the data (its API answered 401).
404not_foundUnknown shop, product or slug.
429upstream_rate_limitedDepop rate limited the request.
502upstream_challengedDepop's edge answered 403 or a Cloudflare challenge did not clear (status challenged).
502unsupported_pageLayout or identity checks failed, or a non-JSON document was served.
502response_too_largeA response exceeded 3 MiB.
502request_limitThe upstream read budget was exhausted.
502upstream_errorNetwork failure or an unexpected upstream status after one retry.
503busyBoth retrieval slots are occupied.
504timeoutThe 45-second deadline elapsed.