Endpoint Playground
Test Crawlora's Depop search sellers 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-sellers?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Seller name or username to search for |
{
"code": 200,
"msg": "OK",
"data": {
"query": "red corte",
"sellers": [
{
"id": 22564880,
"username": "red4201",
"first_name": "Red",
"last_name": "Cortes"
},
{
"id": 51552506,
"username": "redecorate",
"first_name": "kai",
"avatar_url": "https://media-photos.depop.com/b1/51552506/2384449778_27b1e362ea8c462096725bfe9f018bc3/U1.jpg"
}
]
}
}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.
Finds Depop users/sellers by name or username. A matched result's username can be passed directly to GET /depop/shop/{username} for that seller's full shop. Public data sourced from Depop's own user-search API.
{
"code": 200,
"msg": "OK",
"data": {
"query": "red corte",
"sellers": [
{
"id": 22564880,
"username": "red4201",
"first_name": "Red",
"last_name": "Cortes"
},
{
"id": 51552506,
"username": "redecorate",
"first_name": "kai",
"avatar_url": "https://media-photos.depop.com/b1/51552506/2384449778_27b1e362ea8c462096725bfe9f018bc3/U1.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/depop/search-sellers?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"