Real-time StockX sales data for sneakers and streetwear, pay-per-call via Tempo L2.
What it does
KicksDB's StockX Real-Time Sales endpoint returns recent sale records for a given product on StockX. You supply a StockX product ID in the URL path and receive sales data in response. The endpoint is part of the broader KicksDB suite, which aggregates sneaker and streetwear market data — prices, sales history, and availability — from platforms like StockX, GOAT, and others.
The endpoint is live and settles payments via the Tempo method on chain ID 4217 (Tempo L2). Each call costs 5,000 base units of pathUSD (6 decimals), which works out to $0.005 (half a cent) per request. The provider covers gas fees (feePayer: true), so callers only pay the data fee. Payment follows the MPP (Micropayment Protocol) flow: the server returns a 402 challenge with a WWW-Authenticate header, the caller signs a payment, and the data is returned.
No OpenAPI schema, documentation pages, or example responses were found during crawling — all auxiliary routes (docs, pricing, README) return 404. The endpoint URL pattern `/v3/realtime/stockx/products/:id/sales` strongly suggests a RESTful GET that accepts a StockX product identifier and returns an array or object of recent sales records (likely including fields such as sale price, size, date, and condition), but the exact response schema is unconfirmed.
Capabilities
Use cases
- —Retrieve recent StockX sale prices for a specific sneaker to track market value
- —Build a price-tracking dashboard that monitors sneaker resale trends over time
- —Feed real-time sales data into a trading bot or arbitrage engine across resale platforms
- —Power a sneaker valuation tool that estimates current market price from recent transactions
- —Enrich product listings with live secondary-market pricing data
Fit
Best for
- —Sneaker and streetwear resale analytics
- —Programmatic price monitoring of StockX products
- —Agent-driven market research on secondary-market goods
Not for
- —Buying or selling sneakers directly (this is data only, not a marketplace)
- —Bulk historical data dumps spanning years (designed for real-time per-product queries)
- —Non-StockX platforms — use other KicksDB endpoints for GOAT, etc.
Quick start
curl -i https://kicksdb.mpp.tempo.xyz/v3/realtime/stockx/products/air-jordan-1-retro-high-og-chicago/sales
# Returns 402 with WWW-Authenticate: Payment header.
# Sign the challenge with your Tempo wallet, then resend with the payment proof.Endpoint
Quality
The endpoint is live and returns a valid MPP 402 challenge with clear pricing, but there is no documentation, no OpenAPI schema, and no example response available. The response shape must be inferred from the URL pattern and description alone.
Warnings
- —No documentation found — all doc/pricing/README routes return 404
- —Response schema is unknown; field names and structure are inferred
- —Currency address 0x20c0...8b50 on chain 4217 is assumed to be pathUSD (6 decimals) based on Tempo conventions but is not independently verified
Citations
- —The endpoint returns a 402 MPP challenge with method=tempo, intent=charge, amount=5000 on chainId 4217https://kicksdb.mpp.tempo.xyz/v3/realtime/stockx/products/:id/sales
- —Part of KicksDB: Sneaker & streetwear market data — prices, sales history, and availability from StockX, GOAT, and morehttps://kicksdb.mpp.tempo.xyz/v3/realtime/stockx/products/:id/sales