Depop API endpoint
Use Crawlora's Depop item API to extract supported public Depop data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/depop/item/{slug}Returns a normalized Depop item-detail page: description, all photos, price, condition, brand, size, seller info, and a "similar items" carousel when the page has one. Public data sourced from Depop's own item pages. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| slug (path) | string | Yes | Depop item URL slug, e.g. from a search result's id field | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/depop/item/%3Cslug%3E" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `title` is the item's description text up to its first line break — Depop does not expose a separate, shorter title field; `description` is the full text. - `seller` (username, id, verification status, display name, avatar) is only available on this endpoint, not on `/depop/search`'s listing summaries. - `similar_items` is populated when the item page has a "Similar items" carousel, using the same shape as `/depop/search`'s listing summaries. Omitted (not an empty array) when the page doesn't have one. A separate "More from this seller" carousel is also visible on Depop's own item page but isn't included here — it loads via a client-side-only fetch this endpoint doesn't reproduce. - An unknown or delisted item slug returns `404`. - A missing `slug` returns `400` before any upstream request is made. Example response: ```json { "code": 200, "msg": "OK", "data": { "id": "ag_boutique-vintage-mid-rise-bootcut-levi-2476", "url": "https://www.depop.com/products/ag_boutique-vintage-mid-rise-bootcut-levi-2476/", "title": "Vintage Mid rise Bootcut Levi Jeans", "description": "Vintage Mid rise Bootcut Levi Jeans\nSize 6 (28-30 inch waist) They are mid rise *not low rise*\nInseam: 31 inches\n#Levis #flare", "brand_name": "Levi's", "condition": "used_like_new", "colours": ["blue", "navy"], "price_cents": 1500, "original_price_cents": 1800, "currency": "USD", "shipping_cents": 399, "photos": [ "https://media-photos.depop.com/b1/42916032/4363725919_6c94f1277d5b4ba4890ff74980b79b23/P0.jpg" ], "location": "Monroe, United States", "sizes": ["6"], "seller": { "id": 42916032, "username": "ac_boutique", "verified": false, "first_name": "Alaina", "picture_url": "https://media-photos.depop.com/b1/42916032/3675424939_2e6b5627f8084c269b32054ed071f56e/U1.jpg" }, "similar_items": [ { "id": "lsamcminn-vintage-inspired-levis-superlow-flare-jeans-bb57", "url": "https://www.depop.com/products/lsamcminn-vintage-inspired-levis-superlow-flare-jeans-bb57/", "title": "Vintage-inspired Levi's Superlow Flare jeans in a light wash", "brand_name": "Levi's", "condition": "used_good", "colours": ["blue"], "price_cents": 1700, "currency": "USD", "shipping_cents": 399, "thumbnail_url": "https://media-photos.depop.com/r1/39600511/4353764468_d4c5a9c42c714b679ae7e63f9c9ee22d/P0.jpg", "location": "Santa Rosa, United States" } ] } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"id": "ag_boutique-vintage-mid-rise-bootcut-levi-2476",
"url": "https://www.depop.com/products/ag_boutique-vintage-mid-rise-bootcut-levi-2476/",
"title": "Vintage Mid rise Bootcut Levi Jeans",
"description": "Vintage Mid rise Bootcut Levi Jeans\nSize 6 (28-30 inch waist) They are mid rise *not low rise*\nInseam: 31 inches\n#Levis #flare",
"brand_name": "Levi's",
"condition": "used_like_new",
"colours": [
"blue",
"navy"
],
"price_cents": 1500,
"original_price_cents": 1800,
"currency": "USD",
"shipping_cents": 399,
"photos": [
"https://media-photos.depop.com/b1/42916032/4363725919_6c94f1277d5b4ba4890ff74980b79b23/P0.jpg"
],
"location": "Monroe, United States",
"sizes": [
"6"
],
"seller": {
"id": 42916032,
"username": "ac_boutique",
"verified": false,
"first_name": "Alaina",
"picture_url": "https://media-photos.depop.com/b1/42916032/3675424939_2e6b5627f8084c269b32054ed071f56e/U1.jpg"
},
"similar_items": [
{
"id": "lsamcminn-vintage-inspired-levis-superlow-flare-jeans-bb57",
"url": "https://www.depop.com/products/lsamcminn-vintage-inspired-levis-superlow-flare-jeans-bb57/",
"title": "Vintage-inspired Levi's Superlow Flare jeans in a light wash",
"brand_name": "Levi's",
"condition": "used_good",
"colours": [
"blue"
],
"price_cents": 1700,
"currency": "USD",
"shipping_cents": 399,
"thumbnail_url": "https://media-photos.depop.com/r1/39600511/4353764468_d4c5a9c42c714b679ae7e63f9c9ee22d/P0.jpg",
"location": "Santa Rosa, United States"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/depop.ItemDetailResponse
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| brand_name | string | No | ||||
| colours | array | No | ||||
| condition | string | No | ||||
| currency | string | No | ||||
| description | string | No | ||||
| id | string | No | ||||
| location | string | No | ||||
| original_price_cents | integer | No | ||||
| photos | array | No | ||||
| price_cents | integer | No | ||||
| seller | depop.Seller | No | ||||
| seller.first_name | string | No | ||||
| seller.id | integer | No | ||||
| seller.picture_url | string | No | ||||
| seller.username | string | No | ||||
| seller.verified | boolean | No | ||||
| shipping_cents | integer | No | ||||
| similar_items | array | No | SimilarItems is the item page's own "Similar items" carousel, when present -- omitted (not an error) when the page doesn't carry one. | |||
| similar_items[].brand_name | string | No | ||||
| similar_items[].colours | array | No | ||||
| similar_items[].condition | string | No | ||||
| similar_items[].currency | string | No | ||||
| similar_items[].description | string | No | ||||
| similar_items[].id | string | No | ||||
| similar_items[].location | string | No | ||||
| similar_items[].photos | array | No | ||||
| similar_items[].price_cents | integer | No | ||||
| similar_items[].shipping_cents | integer | No | ||||
| similar_items[].sizes | array | No | ||||
| similar_items[].thumbnail_url | string | No | ||||
| similar_items[].title | string | No | ||||
| similar_items[].url | string | No | ||||
| sizes | array | No | ||||
| title | string | No | ||||
| url | string | No |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/depop/item/%3Cslug%3E" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms