# Poshmark Active Listings Scraper (`phoenixcapital/poshmark-active-listings-scraper`) Actor

Scrape active listings from Poshmark by keyword, brand, size, price range and more. Perfect for reseller price research, closet analytics, and market monitoring.

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

## Pricing

from $5.00 / 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 Active Listings Scraper

Scrape **active listings** from Poshmark search results — prices, sizes, sellers, images, and more — without any proxy or browser overhead. Built for resellers, price researchers, and market analysts who need fresh Poshmark data at scale.

> **Search terms this actor covers:** poshmark scraper, poshmark listings scraper, poshmark active listings, poshmark price research, reseller price research, poshmark data export, secondhand fashion data, poshmark API alternative.

***

### What It Does

- Searches Poshmark by **keyword** (e.g. `jordan 1`, `lululemon leggings`, `nike dunk`)
- Filters by **department**, **category**, **brand**, **size**, and **price range**
- Sorts by newest (`added_desc`), price low→high (`price_asc`), or price high→low (`price_desc`)
- Paginates automatically until `maxItems` is reached
- Extracts structured data: title, brand, price, original price, size, condition, seller, likes, comments, listing URL, and image

Uses Poshmark's server-side rendered HTML (`__INITIAL_STATE__` JSON blob) — **no JavaScript rendering, no CAPTCHA, no proxy required**.

***

### Use Cases

| Who | What they do with it |
|---|---|
| **Resellers** | Track competitor prices for the same sneaker/brand to set your own listing price |
| **Price researchers** | Build a price index for secondhand goods (Nike, Lululemon, Jordan) |
| **Inventory scouts** | Find underpriced items quickly, filtered by size and condition |
| **Market analysts** | Monitor supply & demand trends in secondhand fashion |
| **Developers** | Feed data into dashboards, price-alert bots, or spreadsheets |

***

### Input

```json
{
  "query": "nike dunk low",
  "department": "Men",
  "category": "Shoes",
  "brand": "",
  "size": "10",
  "minPrice": 50,
  "maxPrice": 200,
  "sort": "price_asc",
  "maxItems": 100
}
```

| Field | Type | Required | Description |
|---|---|---|---|
| `query` | string | **Yes** | Search keyword (e.g. `jordan 1`, `lululemon`) |
| `department` | string | No | `Men`, `Women`, `Kids` |
| `category` | string | No | Category slug (e.g. `Shoes`) |
| `brand` | string | No | Brand filter (e.g. `Nike`) |
| `size` | string | No | Size filter (e.g. `10`, `M`) |
| `minPrice` | number | No | Minimum price in USD |
| `maxPrice` | number | No | Maximum price in USD |
| `sort` | string | No | `added_desc` (default), `price_asc`, `price_desc` |
| `maxItems` | number | No | Max listings to return (default: 100) |

***

### Output Example

Each item in the dataset looks like this:

```json
{
  "id": "5e71283bd40008d655fdab8a",
  "title": "Air Jordan 1",
  "brand": "Jordan",
  "price": 85,
  "originalPrice": 150,
  "size": "9",
  "condition": "Pre-Owned",
  "department": "Men",
  "category": "Shoes",
  "subcategory": "Athletic Shoes",
  "colors": ["Black"],
  "url": "https://poshmark.com/listing/5e71283bd40008d655fdab8a",
  "image": "https://di2ponv0v5otw.cloudfront.net/posts/...",
  "seller": "bubbamase07",
  "sellerName": "bubbamase07",
  "likes": 9,
  "comments": 18,
  "description": "Great condition, only worn once.",
  "listedAt": "2020-03-17T12:49:37-07:00",
  "updatedAt": "2026-01-25T15:18:04-08:00",
  "hasOffer": false,
  "scrapedAt": "2026-07-07T23:27:23.054Z"
}
```

***

### FAQ

**Q: Do I need a Poshmark account or API key?**\
No. The actor scrapes public search pages — no login, no API key needed.

**Q: Does it work without proxies?**\
Yes. Poshmark serves search results as server-side rendered HTML. The actor reads the embedded JSON directly — no browser, no proxy required.

**Q: Can I filter by condition (new vs. pre-owned)?**\
Poshmark doesn't expose a reliable condition filter in its search URL. The `condition` field is extracted from each listing and may be `null` for some items.

**Q: How many results can I get?**\
Set `maxItems` to any number. The actor paginates through Poshmark's search results until it reaches your limit or runs out of results. For popular queries, thousands of listings are available.

***

### Notes

- Sort option `like_count_desc` is not supported by Poshmark's search — use `added_desc`, `price_asc`, or `price_desc`
- `condition` may be `null` for some listings (seller didn't tag it)
- The actor respects Poshmark's server — max concurrency is set to 1 to avoid rate limiting

# Actor input Schema

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

Search keyword(s) — e.g. 'jordan 1', 'lululemon leggings', 'coach bag'

## `department` (type: `string`):

Filter by department. Leave blank for all.

## `category` (type: `string`):

Category slug to filter (e.g. 'Shoes', 'Tops', 'Dresses', 'Bags & Accessories'). Leave blank for all.

## `brand` (type: `string`):

Filter results to only include listings that contain this brand name (case-insensitive). Leave blank to include all brands.

## `size` (type: `string`):

Filter by exact size (e.g. '8', 'M', 'XL', '10.5'). Leave blank for all sizes.

## `minPrice` (type: `number`):

Minimum listing price in USD. Leave blank for no minimum.

## `maxPrice` (type: `number`):

Maximum listing price in USD. Leave blank for no maximum.

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

Maximum number of listings to scrape. Default is 100.

## `sort` (type: `string`):

How to sort the search results.

## Actor input object example

```json
{
  "query": "jordan 1",
  "department": "",
  "category": "",
  "brand": "",
  "size": "",
  "maxItems": 100,
  "sort": "added_desc"
}
```

# 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 = {
    "query": "jordan 1"
};

// Run the Actor and wait for it to finish
const run = await client.actor("phoenixcapital/poshmark-active-listings-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 = { "query": "jordan 1" }

# Run the Actor and wait for it to finish
run = client.actor("phoenixcapital/poshmark-active-listings-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 '{
  "query": "jordan 1"
}' |
apify call phoenixcapital/poshmark-active-listings-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/BpGYqQ5TVn1OXBN9c/builds/W9uIMRRCHbLZhuim1/openapi.json
