Endpoint Playground
Test Crawlora's Poshmark brand browse 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/poshmark/brand/<name>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| name (path) | string | Yes | Poshmark brand name, matching the path segment of a /brand/{name} URL | |
| max_id | string | No | Opaque pagination cursor from a previous response's next_max_id. Omit for the first page |
{
"code": 200,
"msg": "OK",
"data": {
"total": 210000,
"has_more": true,
"listings": [
{
"id": "6a3333333333333333333333",
"title": "Nike Hoodie",
"price": 30,
"brand": "Nike",
"department": "Men"
}
],
"source_url": "https://poshmark.com/brand/Nike"
}
}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 page of normalized Poshmark listings for a given brand name (e.g. Nike), the same browsing view as Poshmark's own brand pages. Pass a previous response's next_max_id back as max_id to fetch the next page. Credential-free public data sourced from Poshmark's own server-rendered brand page and, for pages past the first, Poshmark's own JSON pagination API.
{
"code": 200,
"msg": "OK",
"data": {
"total": 210000,
"has_more": true,
"listings": [
{
"id": "6a3333333333333333333333",
"title": "Nike Hoodie",
"price": 30,
"brand": "Nike",
"department": "Men"
}
],
"source_url": "https://poshmark.com/brand/Nike"
}
}curl "https://api.crawlora.net/api/v1/poshmark/brand/<name>" \
-H "x-api-key: $CRAWLORA_API_KEY"