# Nike resale price research

**Use case:** 

Pull Nike sold listings from Poshmark and export sold price stats, discounts, listing URLs, and resale pricing signals to CSV/JSON.

## Input

```json
{
  "query": "nike air max women",
  "brand": "",
  "availability": "sold",
  "maxItems": 50,
  "includeActiveComparison": false,
  "targetMarginPercent": 50,
  "proxyEnabled": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "startUrl": ""
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "soldCount": {
    "label": "Sold #",
    "format": "number"
  },
  "medianSoldPrice": {
    "label": "Median sold",
    "format": "number"
  },
  "averageSoldPrice": {
    "label": "Avg sold",
    "format": "number"
  },
  "minSoldPrice": {
    "label": "Min",
    "format": "number"
  },
  "maxSoldPrice": {
    "label": "Max",
    "format": "number"
  },
  "activeCount": {
    "label": "Active #",
    "format": "number"
  },
  "activeMedianPrice": {
    "label": "Median active",
    "format": "number"
  },
  "activeVsSoldSpread": {
    "label": "Active-sold spread",
    "format": "number"
  },
  "suggestedMaxBuyPrice": {
    "label": "Max buy",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Poshmark Sold Comps Scraper - Resale Prices & Pricing Stats](https://apify.com/webdata_labs/poshmark-sold-comps-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/webdata_labs/poshmark-sold-comps-scraper) to learn more, explore other use cases, and run it yourself.