StockX Product Scraper
Pricing
from $3.00 / 1,000 results
Go to Apify Store
StockX Product Scraper
Extract complete product data from StockX product pages: market prices, last sale, bid/ask, retail price, release date, traits, images.
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
Xtractoo
Maintained by CommunityActor stats
0
Bookmarked
3
Total users
2
Monthly active users
3 days ago
Last modified
Categories
Share
Convert any StockX product URL into a complete, normalized record — last sale, lowest ask, highest bid, full market statistics, traits, release date, and media.
What you can do with it
- Resell intelligence — track item-level last sale, lowest ask, and highest bid in near real time.
- Portfolio valuation — mark your inventory to market hourly with live ask and bid prices.
- Arbitrage discovery — surface items where StockX's market diverges from eBay, Depop, or Grailed.
- Trend & hype tracking — measure sales velocity (72h), annual volatility, and price premium per item.
- Stale-URL recovery — the actor follows StockX slug renames and reports a match confidence score.
Features
- Live market snapshot per product:
- Lowest ask + last update timestamp
- Highest bid + last update timestamp
- Last sale price
- Express ask count + lowest express ask
- Annual statistics: average price, volatility, sales count, price premium.
- Recent activity: sales in the last 72 hours, 90-day average price and sales count.
- Product metadata: title, brand, model, gender, condition, primary category, full description.
- Traits: release date, colorway, style ID, retail price.
- Media: thumbnail + image URL.
- Smart URL resolution: tolerates StockX renaming slugs; emits a
matchScore(1.0 = exact match) so you can filter low-confidence rows. - Localized output: ship-to country and currency configurable per run.
- Default Dataset output — JSON / CSV / Excel / RSS / HTML export.
Input
{"productUrls": [{ "url": "https://stockx.com/jordan-1-retro-high-og-chicago-lost-and-found" },{ "url": "https://stockx.com/air-jordan-1-retro-high-bred-toe" }],"country": "US","currency": "USD","maxConcurrency": 3,"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }}
| Field | Type | Description |
|---|---|---|
productUrls | URL[] | StockX product URLs (https://stockx.com/<slug>). |
country | string | Two-letter ISO country code (default US). |
currency | string | ISO currency code (default USD). |
maxConcurrency | int | Parallel workers (default 3). |
maxRequestRetries | int | Per-request retry budget (default 6). |
proxyConfiguration | proxy | Apify Proxy or custom list. RESIDENTIAL recommended. |
Sample Output
{"sourceUrl": "https://stockx.com/jordan-1-retro-high-og-chicago-lost-and-found","scrapedAt": "2026-05-09T08:05:25Z","urlKey": "air-jordan-1-retro-high-og-chicago-reimagined-lost-and-found","matchScore": 0.818,"sources": ["graphql", "html"],"graphql": {"productId": "9a4d44f9-4b16-4abc-ba58-c0db340ee791","title": "Jordan 1 Retro High OG Chicago Lost and Found","brand": "Jordan","model": "Jordan 1 Retro High OG","gender": "men","condition": "New","primaryCategory": "Air Jordan","market": {"state": {"lowestAsk": { "amount": 145, "lastUpdatedAt": "2026-05-08T03:57:14Z" },"highestBid": { "amount": 215, "lastUpdatedAt": "2026-04-29T14:47:46Z" },"lastSale": { "amount": 287 },"expressAskCount": 192,"expressLowestAsk": { "amount": 196 }},"statistics": {"annualAveragePrice": 293,"annualVolatility": 0.093861,"annualSalesCount": 5814,"salesLast72Hours": 24}},"traits": [{ "name": "Release Date", "value": "2022-11-19" },{ "name": "Colorway", "value": "WHITE/BLACK-VARSITY RED" },{ "name": "Style", "value": "DZ5485-612" },{ "name": "Retail Price", "value": "$180" }]}}
Notes
- Public product data only — no StockX account required.
- The
matchScorefield indicates how well the input URL matched the resolved product. Score 1.0 = exact slug match; below 0.5 amatchWarningis also added for human review.