Endpoint Playground
Test Crawlora's Poshmark trend/showroom 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/trend/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Poshmark trend/showroom id, the trailing id segment of a /trend/{slug}-{id} 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": {
"name": "Vintage Celine Handbags",
"total": 5000,
"has_more": true,
"listings": [
{
"id": "6a1111111111111111111111",
"title": "Vintage Celine Bag",
"price": 800,
"brand": "Celine"
}
],
"source_url": "https://poshmark.com/trend/964e80193927e69b518f631b"
}
}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 curated trend/showroom collection (e.g. "Vintage Celine Handbags"), the same browsing view as Poshmark's own trend 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 trend page and, for pages past the first, Poshmark's own JSON pagination API.
{
"code": 200,
"msg": "OK",
"data": {
"name": "Vintage Celine Handbags",
"total": 5000,
"has_more": true,
"listings": [
{
"id": "6a1111111111111111111111",
"title": "Vintage Celine Bag",
"price": 800,
"brand": "Celine"
}
],
"source_url": "https://poshmark.com/trend/964e80193927e69b518f631b"
}
}curl "https://api.crawlora.net/api/v1/poshmark/trend/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"