Endpoint Playground
Test Crawlora's Depop search 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/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Free-text keyword search | |
| price_min | number | No | Minimum listing price in USD | |
| price_max | number | No | Maximum listing price in USD | |
| condition | string | No | Comma-separated condition filter: brand_new, used_like_new, used_excellent, used_good, used_fair | |
| colours | string | No | Comma-separated colour filter: black, grey, white, brown, tan, cream, yellow, red, burgundy, orange, pink, purple, blue, navy, green, khaki, multi | |
| on_sale | boolean | No | Restrict results to discounted listings | |
| sort | string | No | Sort order: relevance, price_low_to_high, price_high_to_low | |
| category | string | No | Depop category slug: tops, bottoms, dresses, coats-jackets, jumpsuit-and-playsuit, suits, footwear, accessories, nightwear, underwear, swim-beach-wear, fancy-dress, sleepsuits-and-bodysuits, bundles, beauty, face-masks, home, tech-accessories, film, art, books-and-magazine, music, party-supplies, sports-equipment-accesories, toys, umbrella. See GET /depop/categories for a machine-readable enumeration with names and subcategories. | |
| subcategory | string | No | Comma-separated Depop subcategory slug(s), scoped within category. See GET /depop/categories for the full list per category. | |
| gender | string | No | Department filter: female, male | |
| brand_ids | string | No | Comma-separated Depop internal numeric brand ids. Not documented by Depop -- find a brand's id by browsing its depop.com/brands/<slug>/ page. | |
| after | string | No | Opaque pagination cursor from a previous response's next_cursor field. Omit for the first page. |
{
"code": 200,
"msg": "OK",
"data": {
"query": "nike jacket",
"total_results": 90627,
"has_more": true,
"next_cursor": "MnwyNHwxNzg1OTUzNjM1.BOOSTED_EXHAUSTED.0",
"items": [
{
"id": "harsisonmn-nike-virginia-tech-track-and-27fc",
"url": "https://www.depop.com/products/harsisonmn-nike-virginia-tech-track-and-27fc/",
"title": "Nike College Track and Field black windbreaker jacket #trackandfield",
"description": "Nike College Track and Field black windbreaker jacket #trackandfield\n\nNike womens medium jacket, #trackandfield\n#nike #jacket",
"brand_name": "Nike",
"condition": "used_excellent",
"colours": [
"black"
],
"price_cents": 800,
"currency": "USD",
"shipping_cents": 199,
"thumbnail_url": "https://media-photos.depop.com/r1/329377772/4357366076_0948c314910046e9946f466fc1d87e70/P0.jpg",
"photos": [
"https://media-photos.depop.com/r1/329377772/4357366076_0948c314910046e9946f466fc1d87e70/P0.jpg"
],
"sizes": [
"M"
],
"location": "Charlotte, 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.
Searches Depop's resale-fashion marketplace by free-text keyword, with optional price, condition, colour, category, subcategory, gender, brand, discount, and sort filters, returning normalized listing summaries (title, price, brand, condition, photos, sizes), a pagination cursor, and the total matching count. Public data sourced from Depop's own search API.
{
"code": 200,
"msg": "OK",
"data": {
"query": "nike jacket",
"total_results": 90627,
"has_more": true,
"next_cursor": "MnwyNHwxNzg1OTUzNjM1.BOOSTED_EXHAUSTED.0",
"items": [
{
"id": "harsisonmn-nike-virginia-tech-track-and-27fc",
"url": "https://www.depop.com/products/harsisonmn-nike-virginia-tech-track-and-27fc/",
"title": "Nike College Track and Field black windbreaker jacket #trackandfield",
"description": "Nike College Track and Field black windbreaker jacket #trackandfield\n\nNike womens medium jacket, #trackandfield\n#nike #jacket",
"brand_name": "Nike",
"condition": "used_excellent",
"colours": [
"black"
],
"price_cents": 800,
"currency": "USD",
"shipping_cents": 199,
"thumbnail_url": "https://media-photos.depop.com/r1/329377772/4357366076_0948c314910046e9946f466fc1d87e70/P0.jpg",
"photos": [
"https://media-photos.depop.com/r1/329377772/4357366076_0948c314910046e9946f466fc1d87e70/P0.jpg"
],
"sizes": [
"M"
],
"location": "Charlotte, United States"
}
]
}
}curl "https://api.crawlora.net/api/v1/depop/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"