Endpoint Playground
Test Crawlora's Depop item API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/depop/item/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Depop item URL slug, e.g. from a search result's id field |
{
"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"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
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.
{
"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"
}
]
}
}curl "https://api.crawlora.net/api/v1/depop/item/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"