Poshmark API endpoint
Use Crawlora's Poshmark listing detail API to extract supported public Poshmark data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/poshmark/listing/{id}Returns a normalized Poshmark item-detail page: the full listing (description, all photos, size/brand/condition, inventory), its seller's profile, public comments, and similar listings Poshmark itself surfaces on the same page. Credential-free public data sourced from Poshmark's own server-rendered listing page. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| id (path) | string | Yes | Poshmark listing id, the trailing id segment of a /listing/{slug}-{id} URL | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/poshmark/listing/example" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- `seller` is the listing's seller profile, keeping only display-facing identity and reputation fields (username, name, avatar, follower/rating counts). Poshmark's own page state carries a much larger internal user object alongside it (financial totals, fraud/moderation review flags, KYC verification state, tax and email-engagement tracking, and an `email` field) — none of that is ever included in this response. - `comments` keeps only the public comment text and author identity. Poshmark's raw comment records also carry spam/fraud-review metadata, which is never included. - `similar_listings` is omitted (absent, not an empty array) when Poshmark's own page does not carry a similar-listings shelf for that item. - An unknown listing id returns `404`. Example response: ```json { "code": 200, "msg": "OK", "data": { "id": "6a3fed1de9c77df92e2c0cc6", "title": "NWT Farm Rio Shorts", "description": "New with tags.", "price": 55, "original_price": 95, "condition": "nwt", "brand": "FARM Rio", "category": "Shorts", "department": "Women", "size": "S", "colors": ["Red", "Yellow"], "status": "published", "cover_shot": "https://di2ponv0v5otw.cloudfront.net/posts/x/m_x.jpg", "pictures": ["https://di2ponv0v5otw.cloudfront.net/posts/x/m_x.jpg"], "like_count": 111, "comment_count": 4, "seller": { "id": "5a4f84cb7d70fb0f0f05a37f", "username": "maltimar", "full_name": "Mary Altimar", "followers": 9096, "following": 89, "posts_count": 698, "items_sold_display": "500+", "rating_average": 4.93, "rating_count": 368, "rating_breakdown": {"five_star": 355, "four_star": 7, "three_star": 2, "two_star": 3, "one_star": 1}, "orders_shipped": 522, "url": "https://poshmark.com/closet/maltimar" }, "comments": [ {"id": "6a4a86191fea02ce69f41484", "comment": "Hi can you tell me the width of the waist?", "creator_username": "muvlax20"} ], "source_url": "https://poshmark.com/listing/6a3fed1de9c77df92e2c0cc6" } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"id": "6a3fed1de9c77df92e2c0cc6",
"title": "NWT Farm Rio Shorts",
"description": "New with tags.",
"price": 55,
"original_price": 95,
"condition": "nwt",
"brand": "FARM Rio",
"category": "Shorts",
"department": "Women",
"size": "S",
"colors": [
"Red",
"Yellow"
],
"status": "published",
"cover_shot": "https://di2ponv0v5otw.cloudfront.net/posts/x/m_x.jpg",
"pictures": [
"https://di2ponv0v5otw.cloudfront.net/posts/x/m_x.jpg"
],
"like_count": 111,
"comment_count": 4,
"seller": {
"id": "5a4f84cb7d70fb0f0f05a37f",
"username": "maltimar",
"full_name": "Mary Altimar",
"followers": 9096,
"following": 89,
"posts_count": 698,
"items_sold_display": "500+",
"rating_average": 4.93,
"rating_count": 368,
"rating_breakdown": {
"five_star": 355,
"four_star": 7,
"three_star": 2,
"two_star": 3,
"one_star": 1
},
"orders_shipped": 522,
"url": "https://poshmark.com/closet/maltimar"
},
"comments": [
{
"id": "6a4a86191fea02ce69f41484",
"comment": "Hi can you tell me the width of the waist?",
"creator_username": "muvlax20"
}
],
"source_url": "https://poshmark.com/listing/6a3fed1de9c77df92e2c0cc6"
}
}Request schema
No body schema
Response schema
#/definitions/poshmark.ListingResponse
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| brand | string | No | FARM Rio | |||
| category | string | No | Shorts | |||
| colors | array | No | Red,Yellow | |||
| comment_count | integer | No | 4 | |||
| comments | array | No | ||||
| comments[].comment | string | No | Hi can you tell me the width of the waist? | |||
| comments[].created_at | string | No | 2026-07-05T09:28:09-07:00 | |||
| comments[].creator_full_name | string | No | Jen Muston | |||
| comments[].creator_picture_url | string | No | ||||
| comments[].creator_username | string | No | muvlax20 | |||
| comments[].id | string | No | 6a4a86191fea02ce69f41484 | |||
| condition | string | No | nwt | |||
| cover_shot | string | No | https://di2ponv0v5otw.cloudfront.net/posts/2026/06/27/6a3fed1de9c77df92e2c0cc6/s_6a3fed24bd4ce3ff762126e5.jpg | |||
| created_at | string | No | 2026-06-27T08:32:58-07:00 | |||
| department | string | No | Women | |||
| description | string | No | ||||
| first_available_at | string | No | ||||
| id | string | No | 6a3fed1de9c77df92e2c0cc6 | |||
| inventory_status | string | No | available | |||
| like_count | integer | No | 111 | |||
| original_price | number | No | 95 | |||
| pictures | array | No | ||||
| price | number | No | 55 | |||
| quantity_available | integer | No | 1 | |||
| seller | poshmark.Seller | No | ||||
| seller.cover_shot_url | string | No | ||||
| seller.display_handle | string | No | maltimar | |||
| seller.followers | integer | No | 9096 | |||
| seller.following | integer | No | 89 | |||
| seller.full_name | string | No | Mary Altimar | |||
| seller.id | string | No | 5a4f84cb7d70fb0f0f05a37f | |||
| seller.items_sold_display | string | No | 500+ | |||
| seller.last_active_at | string | No | 2026-08-04T19:52:16-07:00 | |||
| seller.member_since | string | No | 2018-01-05T05:59:39-08:00 | |||
| seller.orders_shipped | integer | No | 522 | |||
| seller.picture_url | string | No | https://di2ponv0v5otw.cloudfront.net/users/2018/04/23/5a4f84cb7d70fb0f0f05a37f/t_5ade0fdbd0492dff500c741a.jpg | |||
| seller.posts_count | integer | No | 698 | |||
| seller.rating_average | number | No | 4.93 | |||
| seller.rating_breakdown | poshmark.RatingBreakdown | No | ||||
| seller.rating_breakdown.five_star | integer | No | 355 | |||
| seller.rating_breakdown.four_star | integer | No | 7 | |||
| seller.rating_breakdown.one_star | integer | No | 1 | |||
| seller.rating_breakdown.three_star | integer | No | 2 | |||
| seller.rating_breakdown.two_star | integer | No | 3 | |||
| seller.rating_count | integer | No | 368 | |||
| seller.url | string | No | https://poshmark.com/closet/maltimar | |||
| seller.username | string | No | maltimar | |||
| seller_display_handle | string | No | maltimar | |||
| seller_full_name | string | No | Mary Altimar | |||
| seller_picture_url | string | No | ||||
| seller_username | string | No | maltimar | |||
| share_count | integer | No | 13 | |||
| similar_listings | array | No | ||||
| similar_listings[].brand | string | No | FARM Rio | |||
| similar_listings[].category | string | No | Shorts | |||
| similar_listings[].colors | array | No | Red,Yellow | |||
| similar_listings[].comment_count | integer | No | 4 | |||
| similar_listings[].condition | string | No | nwt | |||
| similar_listings[].cover_shot | string | No | https://di2ponv0v5otw.cloudfront.net/posts/2026/06/27/6a3fed1de9c77df92e2c0cc6/s_6a3fed24bd4ce3ff762126e5.jpg | |||
| similar_listings[].created_at | string | No | 2026-06-27T08:32:58-07:00 | |||
| similar_listings[].department | string | No | Women | |||
| similar_listings[].description | string | No | ||||
| similar_listings[].first_available_at | string | No | ||||
| similar_listings[].id | string | No | 6a3fed1de9c77df92e2c0cc6 | |||
| similar_listings[].inventory_status | string | No | available | |||
| similar_listings[].like_count | integer | No | 111 | |||
| similar_listings[].original_price | number | No | 95 | |||
| similar_listings[].pictures | array | No | ||||
| similar_listings[].price | number | No | 55 | |||
| similar_listings[].quantity_available | integer | No | 1 | |||
| similar_listings[].seller_display_handle | string | No | maltimar | |||
| similar_listings[].seller_full_name | string | No | Mary Altimar | |||
| similar_listings[].seller_picture_url | string | No | ||||
| similar_listings[].seller_username | string | No | maltimar | |||
| similar_listings[].share_count | integer | No | 13 | |||
| similar_listings[].size | string | No | S | |||
| similar_listings[].status | string | No | published | |||
| similar_listings[].title | string | No | NWT Farm Rio Shorts | |||
| similar_listings[].url | string | No | https://poshmark.com/listing/6a3fed1de9c77df92e2c0cc6 | |||
| size | string | No | S | |||
| source_url | string | No | ||||
| status | string | No | published | |||
| title | string | No | NWT Farm Rio Shorts | |||
| url | string | No | https://poshmark.com/listing/6a3fed1de9c77df92e2c0cc6 |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/poshmark/listing/example" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms