# Poshmark Scraper - Fashion Resale Listings (`jongoose/poshmark-scraper`) Actor

Scrape Poshmark resale-fashion listings: title, brand, size, price + original retail price, condition & NWT flag, category, department, seller, photo, colors, and availability (sold/active). Search by keyword or paste Poshmark URLs. No login or API key needed.

- **URL**: https://apify.com/jongoose/poshmark-scraper.md
- **Developed by:** [James Scott](https://apify.com/jongoose) (community)
- **Categories:** E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.90 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Poshmark Scraper - Fashion Resale Listings

Scrape **fashion resale listings from Poshmark** into clean, structured data - no Poshmark account or API key required.

### What you get (per listing)

- **Stable id** and canonical `poshmark.com/listing/...` URL
- **Title**, brand, size, category, department
- **Price**, original (retail) price
- **Condition** tier and a dedicated **New-With-Tags (`isNWT`) flag** (raw `conditionCode` kept too)
- **Seller username** and **cover photo** URL
- **Inventory status** (`available` / `sold`)
- **Colors**, item description, created/updated timestamps
- Engagement counts (likes, shares, comments)

### Input

- **Poshmark search URLs** - paste one or more `https://poshmark.com/search?query=...` URLs; the scraper reads each URL's `query` keyword.
- Or set **Keyword** (e.g. `nike`, `coach bag`, `levis 501`) directly.
- Leave both empty to scrape the **general Poshmark feed**.
- **Max listings** caps the run.

#### Example input

```json
{
  "startUrls": [{ "url": "https://poshmark.com/search?query=nike" }],
  "query": "coach bag",
  "maxItems": 200,
  "proxyConfiguration": { "useApifyProxy": true }
}
```

#### Example output record

```json
{
  "id": "6a47f90c52801599c7e5a573",
  "title": "Nike Top",
  "brand": "Nike",
  "size": "M",
  "price": 15,
  "originalPrice": null,
  "condition": "New With Tags",
  "conditionCode": "nwt",
  "isNWT": true,
  "category": "Tops",
  "department": "Women",
  "sellerUsername": "poshisthevibes",
  "coverShotUrl": "https://di2ponv0v5otw.cloudfront.net/posts/.../m_....jpeg",
  "url": "https://poshmark.com/listing/Nike-Top-6a47f90c52801599c7e5a573",
  "inventoryStatus": "available",
  "createdAt": "2026-07-03T11:01:48-07:00",
  "colors": ["Blue", "Orange"],
  "scrapedFrom": "poshmark.com"
}
```

### Why this actor

- **Fast + cheap:** every field is read straight from Poshmark's own JSON search API, so there are no extra per-listing requests, and it runs on Apify's default datacenter proxy (no pricey residential proxy).
- **Complete records:** original (retail) price, condition tier with a clean New-With-Tags flag, seller, colors and inventory status - fields many Poshmark scrapers skip.
- **Durable:** parses structured JSON, not brittle CSS selectors.
- Export as JSON, CSV, Excel, or pull via the API.

Great for resellers and analysts doing **pricing intelligence, brand/sell-through analysis, and fashion-resale market research**.

This is public marketplace data provided for research; it is **not a consumer report** and must **not** be used for any FCRA-covered purposes.

# Actor input Schema

## `startUrls` (type: `array`):

One or more Poshmark search-results URLs (e.g. https://poshmark.com/search?query=nike). The scraper reads the keyword from each URL's `query` parameter and pulls matching listings. Leave empty to scrape by Keyword below, or leave both empty to scrape the general Poshmark feed.

## `query` (type: `string`):

Free-text search keyword (brand, item, style...) - e.g. "nike", "coach bag", "levis 501". Used when no Start URL is provided. Leave empty (and provide no Start URL) to scrape the general Poshmark feed.

## `maxItems` (type: `integer`):

Stop after collecting this many listings.

## `proxyConfiguration` (type: `object`):

Poshmark works fine through Apify's default (datacenter) proxy - no residential proxy needed.

## Actor input object example

```json
{
  "startUrls": [],
  "query": "nike",
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("jongoose/poshmark-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "startUrls": [] }

# Run the Actor and wait for it to finish
run = client.actor("jongoose/poshmark-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": []
}' |
apify call jongoose/poshmark-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=jongoose/poshmark-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/rrg5LQfIbLEuViCgf/builds/x7DBHgHo13ub0PeMM/openapi.json
