# Poshmark Scraper (`daddyapi/poshmark-scraper`) Actor

Specialized scraper for Poshmark. Search by KEYWORD and extract detailed listings including prices, photos, descriptions, and seller info from the leading social marketplace.

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

## Pricing

from $1.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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

> **The specialized scraper for Poshmark.** Search by KEYWORD and extract detailed listings including prices, photos, descriptions, and seller info from the leading social marketplace.

[![Apify Actor](https://img.shields.io/badge/Apify-Actor-blue?style=for-the-badge\&logo=apify)](https://apify.com/daddyapi/poshmark-scraper)
[![Node.js](https://img.shields.io/badge/Node.js-v22-green?style=for-the-badge\&logo=node.js)](https://nodejs.org/)

### 🚀 Why this scraper?

Most Poshmark scrapers require you to manually visit the website, apply filters, copy the URL, and paste it into the scraper. **That's slow and unscalable.**

**Poshmark Scraper** acts like a real user:

1. You provide a **Search Keyword** (e.g., "Nike Tech Fleece").
2. You choose a **Sort Order** (e.g., Just In).
3. The actor navigates, searches, handles pagination, and extracts clean, high-fidelity data.

**Perfect for:**

- 📉 **Price Monitoring:** Track fashion trends and competitor pricing.
- 👗 **Reselling:** Find undervalued items ("sourcing") instantly.
- 📊 **Market Analysis:** Analyze brand popularity and seller performance.
- 🛍️ **Personal Shopping:** Find specific items across thousands of listings.

***

### 📖 How to Use

#### Option 1: Apify Console (No Coding)

1. Go to the **Input** tab.
2. Enter your **Search Keyword** (e.g., `Lululemon Align Leggings`).
3. (Optional) Set **Sort By** to `Just In` (`newest`) to get the latest listings.
4. **Proxy Selection:** Select "Apify Proxy" (**Residential US** is highly recommended) OR select your own custom proxy groups if you are renting the worker.
5. Click **Start**.
6. Download your data in Excel, CSV, or JSON format.

#### Option 2: API (Developers)

You can trigger this actor programmatically via REST API, Python, or Node.js.

##### Input Payload (JSON)

```json
{
    "searchQuery": "Vintage Levi's 501",
    "sortBy": "newest",
    // Options: "newest" (Just In), "cheapest", "expensive", "relevance"

    "maxPages": 1,
    "maxRequestsPerCrawl": 50,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US"
    }
}
```

##### 🐍 Python Example (Simple & Clean)

This script runs the scraper and saves the results to a local file. It demonstrates how to use **Custom Proxies** (Datacenter or Residential) associated with your Apify account.

```python
import json
from apify_client import ApifyClient

## 1. Configuration
APIFY_TOKEN = 'YOUR_APIFY_TOKEN'
ACTOR_ID = 'daddyapi/poshmark-scraper'

client = ApifyClient(APIFY_TOKEN)

## 2. Define Input
run_input = {
    "searchQuery": "Air Jordan 1 Retro",
    "sortBy": "newest",
    "maxPages": 1,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"], # Residential is best for Poshmark
        "apifyProxyCountry": "US"
    }
}

print(f"🚀 Starting scraper for: {run_input['searchQuery']}...")

## 3. Run Actor
run = client.actor(ACTOR_ID).call(run_input=run_input)

if not run:
    print("❌ Failed to start run.")
    exit(1)

print(f"✅ Run finished! Status: {run['status']}")

## 4. Fetch & Save Results
dataset_client = client.dataset(run["defaultDatasetId"])
items = dataset_client.list_items().items

filename = "results.json"
with open(filename, "w", encoding="utf-8") as f:
    json.dump(items, f, indent=2, ensure_ascii=False)

print(f"💾 Saved {len(items)} listings to {filename}")
```

***

### 🔒 Proxy Configuration (Bring Your Own Proxies)

This actor is fully compatible with **Apify Proxy** (Datacenter & Residential) and **Custom Proxies**.

#### 1. Residential Proxies (Best Reliability)

**Highly Recommended.** Poshmark has strict bot detection. Residential proxies (especially US-based) provide the highest success rate.

```json
{
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US"
    }
}
```

#### 2. Datacenter Proxies (Cost-Effective)

If you have your own Datacenter proxy groups on Apify you can try them here, but be aware of potential blocks (403 errors).

```json
{
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "BUYPROXIES94952"
        ]
    }
}
```

#### 3. Bring Your Own Proxies (Custom URLs)

If you have proxies from an external provider (BrightData, Smartproxy, IPRoyal, etc.), you can pass the connection strings directly.

```json
{
    "proxyConfiguration": {
        "useApifyProxy": false,
        "proxyUrls": [
            "http://username:password@my-proxy.example.com:8000/",
            "http://username:password@my-proxy-2.example.com:8000/"
        ]
    }
}
```

***

### 📊 Data Output

The scraper returns highly detailed, structured data for every listing:

```json
{
  "type": "search_result_poshmark",
  "id": "651a2b3c4d5e6f7g8h9i0j1k",
  "url": "https://poshmark.com/listing/iphone-15-pro-max-256gb-natural-titanium-unlocked-651a2b3c4d5e6f7g8h9i0j1k",
  "title": "iPhone 15 Pro Max 256GB Natural Titanium Unlocked",
  "description": "Brand new sealed iPhone 15 Pro Max. Natural Titanium color. 256GB storage. Factory unlocked for any carrier. Will ship immediately with insurance.",
  "price": {
    "amount": 1150,
    "currency": "USD",
    "display": "$1,150.00"
  },
  "location": {
    "city": null,
    "address": null
  },
  "mainPhoto": "https://di2ponv0v5otw.cloudfront.net/posts/2026/01/10/651a2b3c4d5e6f7g8h9i0j1k/iphone_15_pro_cover.jpg",
  "photos": [
    "https://di2ponv0v5otw.cloudfront.net/posts/2026/01/10/651a2b3c4d5e6f7g8h9i0j1k/iphone_15_pro_cover.jpg",
    "https://di2ponv0v5otw.cloudfront.net/posts/2026/01/10/651a2b3c4d5e6f7g8h9i0j1k/iphone_15_pro_back.jpg"
  ],
  "postedAt": "2026-01-10T09:30:00-08:00",
  "isBusiness": false,
  "seller": {
    "name": "techreseller_us",
    "rating": null,
    "reviewsSummary": null,
    "fullName": "Tech Deals USA",
    "picture": "https://di2ponv0v5otw.cloudfront.net/users/2026/01/10/techreseller_us/profile.jpg"
  }
}
```

***

### ⚙️ Configuration Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `searchQuery` | String | ✅ | - | What to search for. Supports multiple words (e.g., "Gucci Bag"). |
| `sortBy` | Enum | ❌ | `newest` | `newest` (Just In), `cheapest`, `expensive`, or `relevance`. |
| `maxPages` | Integer | ❌ | `1` | Depth of scrape. 1 page ≈ 48 listings. |
| `proxyConfiguration` | Object | ❌ | Auto | Configure Residential or Your Custom Proxy Groups. |

***

### 🛡️ Troubleshooting

- **Empty Results?** Check spelling or try a broader keyword.
- **Blocked/Access Denied?** Poshmark detected the request. Ensure you are using **Residential Proxies** (US). Datacenter IPs are often blocked.
- **Missing Fields?** Some data (like seller rating) is not available on the search results page.

***

#### ⚖️ Legal & Ethics

This scraper is for educational and analytical purposes. Please respect Poshmark's Terms of Service and `robots.txt`. Do not use this tool to spam sellers or overload their servers. Use responsible rate limits.

***

### 🌟 More Scrapers from DaddyAPI

Check out our other specialized tools for scraping data:

| Scraper | Description | Price |
|---------|-------------|-------|
| **[Generic Html Scraper](https://apify.com/daddyapi/generic-html-scraper)** | **\[Participating in the $1M Challenge]**<br>A lightweight, robust, and simple actor to fetch the raw HTML content of any URL. | Pay per result |
| **[Avito Scraper](https://apify.com/daddyapi/avito-scraper)** | Scrape ads from **avito.ru**. Extracts prices, photos, descriptions, and seller info. | Pay per result |
| **[Leboncoin Scraper](https://apify.com/daddyapi/leboncoin-scraper)** | Scrape ads from **leboncoin.fr**. Extracts detailed listings. | Pay per result |
| **[Olx Brazil Scraper](https://apify.com/daddyapi/olx-brazil-scraper)** | Dedicated scraper for **olx.com.br**. Optimized for Brazil. | Pay per result |
| **[Olx India Scraper](https://apify.com/daddyapi/olx-india-scraper)** | Dedicated scraper for **olx.in**. Optimized for India. | Pay per result |
| **[Olx Search Scraper](https://apify.com/daddyapi/olx-search-scraper)** | **Global OLX scraper.** Supports Ukraine, Poland, Romania, Portugal, and more. | Pay per result |
| **[Marktplaats Scraper](https://apify.com/daddyapi/marktplaats-scraper)** | Scrape ads from the Dutch marketplace **marktplaats.nl**. | Private |
| **[Reddit Scraper](https://apify.com/daddyapi/reddit-scraper)** | Extract posts and comments from **Reddit**. | Pay per result |

# Actor input Schema

## `searchQuery` (type: `string`):

What item are you looking for? (e.g., 'Apple', 'Lululemon', 'Nike')

## `sortBy` (type: `string`):

Order in which ads are scraped. 'newest' sorts by Just In.

## `maxPages` (type: `integer`):

How many pages of results to traverse. 1 page ≈ 48 ads.

## `maxRequestsPerCrawl` (type: `integer`):

Hard limit on total requests to prevent runaway costs.

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

⚠️ RESIDENTIAL PROXIES (US) RECOMMENDED.

## Actor input object example

```json
{
  "searchQuery": "macbook",
  "sortBy": "newest",
  "maxPages": 1,
  "maxRequestsPerCrawl": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("daddyapi/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 = {}

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

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

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

```

## CLI example

```bash
echo '{}' |
apify call daddyapi/poshmark-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,daddyapi/poshmark-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/3ad3WZdu6R2eBUTyh/builds/b620fd8GvnRRQ6mh7/openapi.json
