# Poshmark sold listings scraper task

**Use case:** 

Scrape Poshmark sold listings with sold prices, brands, sizes, categories, sellers, sold dates, likes, comments, and listing URLs.

## Input

```json
{
  "queries": [
    "nike sneakers"
  ],
  "searchUrls": [
    {
      "url": "https://poshmark.com/search?query=nike%20sneakers&type=listings&availability=sold_out"
    }
  ],
  "maxItems": 30
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Sold price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "number"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "size": {
    "label": "Size",
    "format": "text"
  },
  "department": {
    "label": "Department",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "sellerUsername": {
    "label": "Seller",
    "format": "text"
  },
  "soldAt": {
    "label": "Sold at",
    "format": "date"
  },
  "daysToSell": {
    "label": "Days to sell",
    "format": "number"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "query": {
    "label": "Query",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Poshmark Sold Listings Scraper](https://apify.com/automation-lab/poshmark-sold-listings-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/poshmark-sold-listings-scraper) to learn more, explore other use cases, and run it yourself.