Endpoint Playground
Test Crawlora's Depop item similar 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>/similar" \
-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 | |
| limit | integer | No | Max results per page, 1-150 | |
| after | string | No | Opaque pagination cursor from a previous response's next_cursor field. Omit for the first page. |
{
"code": 200,
"msg": "OK",
"data": {
"items": [
{
"id": "rayofsuashineva-artsy-chic-boho-luxe-eclectic-d9c0",
"url": "https://www.depop.com/products/rayofsuashineva-artsy-chic-boho-luxe-eclectic-d9c0/",
"title": "Artsy chic",
"description": "Artsy chic\n\nBoho luxe\n\nMichael Simon jacket, multicolor plaid jacket",
"brand_name": "Other",
"condition": "used_excellent",
"colours": [
"multi"
],
"price_cents": 2500,
"currency": "USD",
"shipping_cents": 199,
"thumbnail_url": "https://media-photos.depop.com/b1/264682642/4443656880_c7418b1968634a5a8a7e98ba0a863801/P0.jpg",
"sizes": [
"M"
],
"location": "Durham, United States",
"like_count": 0
}
],
"has_more": true,
"next_cursor": "NQ"
}
}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 items similar to a given Depop listing, via Depop's dedicated similar-items API -- richer and paginated (up to 150 per page) compared to the small, non-paginated "similar items" carousel already included in item detail. Public data sourced from Depop's own similar-items API.
{
"code": 200,
"msg": "OK",
"data": {
"items": [
{
"id": "rayofsuashineva-artsy-chic-boho-luxe-eclectic-d9c0",
"url": "https://www.depop.com/products/rayofsuashineva-artsy-chic-boho-luxe-eclectic-d9c0/",
"title": "Artsy chic",
"description": "Artsy chic\n\nBoho luxe\n\nMichael Simon jacket, multicolor plaid jacket",
"brand_name": "Other",
"condition": "used_excellent",
"colours": [
"multi"
],
"price_cents": 2500,
"currency": "USD",
"shipping_cents": 199,
"thumbnail_url": "https://media-photos.depop.com/b1/264682642/4443656880_c7418b1968634a5a8a7e98ba0a863801/P0.jpg",
"sizes": [
"M"
],
"location": "Durham, United States",
"like_count": 0
}
],
"has_more": true,
"next_cursor": "NQ"
}
}curl "https://api.crawlora.net/api/v1/depop/item/<slug>/similar" \
-H "x-api-key: $CRAWLORA_API_KEY"