Endpoint Playground
Test Crawlora's Poshmark listing detail 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/listing/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Poshmark listing id, the trailing id segment of a /listing/{slug}-{id} URL |
{
"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"
}
}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 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/poshmark/listing/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"