Poshmark Scraper avatar
Poshmark Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Poshmark Scraper

Poshmark Scraper

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

Pricing

from $1.00 / 1,000 results

Rating

5.0

(1)

Developer

DaddyAPI

DaddyAPI

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

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 Node.js

๐Ÿš€ 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)

{
"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.

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.

{
"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).

{
"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.

{
"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:

{
"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

ParameterTypeRequiredDefaultDescription
searchQueryStringโœ…-What to search for. Supports multiple words (e.g., "Gucci Bag").
sortByEnumโŒnewestnewest (Just In), cheapest, expensive, or relevance.
maxPagesIntegerโŒ1Depth of scrape. 1 page โ‰ˆ 48 listings.
proxyConfigurationObjectโŒAutoConfigure 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.

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:

ScraperDescriptionPrice
Generic Html Scraper[Participating in the $1M Challenge]
A lightweight, robust, and simple actor to fetch the raw HTML content of any URL.
Pay per result
Avito ScraperScrape ads from avito.ru. Extracts prices, photos, descriptions, and seller info.Pay per result
Leboncoin ScraperScrape ads from leboncoin.fr. Extracts detailed listings.Pay per result
Olx Brazil ScraperDedicated scraper for olx.com.br. Optimized for Brazil.Pay per result
Olx India ScraperDedicated scraper for olx.in. Optimized for India.Pay per result
Olx Search ScraperGlobal OLX scraper. Supports Ukraine, Poland, Romania, Portugal, and more.Pay per result
Marktplaats ScraperScrape ads from the Dutch marketplace marktplaats.nl.Private
Reddit ScraperExtract posts and comments from Reddit.Pay per result