Endpoint Playground
Test Crawlora's Poshmark Categories 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"departments": [
{
"id": "000e8975d97b4e80ef00a955",
"name": "Women",
"path": "Women",
"categories": [
{
"id": "002a8975d97b4e80ef00a955",
"name": "Accessories",
"path": "Women-Accessories"
},
{
"id": "00268975d97b4e80ef00a955",
"name": "Shoes",
"path": "Women-Shoes"
}
]
}
]
}
}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 Poshmark's full department/category browse taxonomy (e.g. Women > Shoes, Men > Jackets & Coats). Each entry's path resolves directly against the category endpoint. This is reference data that changes rarely, so responses are cached. Credential-free public data sourced from Poshmark's own server-rendered category pages.
{
"code": 200,
"msg": "OK",
"data": {
"departments": [
{
"id": "000e8975d97b4e80ef00a955",
"name": "Women",
"path": "Women",
"categories": [
{
"id": "002a8975d97b4e80ef00a955",
"name": "Accessories",
"path": "Women-Accessories"
},
{
"id": "00268975d97b4e80ef00a955",
"name": "Shoes",
"path": "Women-Shoes"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/poshmark/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"