Retrieve StockX product data (prices, details) per item via pay-per-call API on Tempo L2.
What it does
KicksDB's StockX product endpoint returns detailed product information for a given StockX product ID. It is part of the broader KicksDB platform, which aggregates sneaker and streetwear market data — including prices, sales history, and availability — from marketplaces like StockX, GOAT, and others.
The endpoint is accessed via HTTP GET at `/v3/stockx/products/:id`, where `:id` is the StockX product identifier. It uses the Micropayment Protocol (MPP) with Tempo settlement on chain ID 4217. Each call costs 500 base units of pathUSD (0.0005 USD per request, given 6-decimal pathUSD). The provider covers gas fees (feePayer: true), so callers only pay the per-request charge. The payment challenge expires far in the future (April 2026), indicating stable pricing.
No OpenAPI schema, documentation pages, or example responses were found during crawling — the provider's origin returns 404 on all non-endpoint paths. The exact response shape (fields returned per product) is therefore unknown and must be discovered by making a paid request. Based on the KicksDB platform description, expect fields related to product name, brand, colorway, retail price, market price, images, and possibly size-level pricing, but this is inferred rather than confirmed.
Capabilities
Use cases
- —Fetching current StockX product details and pricing for a specific sneaker or streetwear item
- —Building price comparison tools across sneaker marketplaces
- —Powering chatbots or AI agents that answer questions about sneaker market values
- —Monitoring product availability and price changes on StockX
Fit
Best for
- —Developers building sneaker/streetwear price aggregation tools
- —AI agents that need real-time StockX product data
- —Low-cost per-query lookups of individual StockX products
Not for
- —Bulk data exports or full catalog scraping (pay-per-call model makes this expensive at scale)
- —Historical sales chart data (not confirmed to be included in this endpoint)
- —Non-StockX marketplace lookups (separate KicksDB endpoints likely exist for GOAT, etc.)
Quick start
# MPP-authenticated GET request (Tempo L2 settlement)
curl -X GET \
'https://kicksdb.mpp.tempo.xyz/v3/stockx/products/air-jordan-1-retro-high-og-chicago-lost-and-found' \
-H 'Authorization: Payment <signed-tempo-payment-token>'Endpoint
Quality
The endpoint is live and returns a valid MPP 402 challenge with clear pricing, but no documentation, OpenAPI schema, or example responses are available. The response shape is entirely unknown. Listing is based on the probe challenge and the existing Bazaar description.
Warnings
- —No documentation or OpenAPI schema found — all crawled pages return 404
- —Response schema is unknown; field names and structure must be discovered via a paid call
- —Currency address 0x20c000000000000000000000b9537d11c60e8b50 is assumed to be pathUSD (6 decimals) based on Tempo L2 convention but could not be independently verified
Citations
- —The endpoint returns HTTP 402 with an MPP challenge using Tempo settlement on chain 4217https://kicksdb.mpp.tempo.xyz/v3/stockx/products/:id
- —Part of KicksDB: Sneaker & streetwear market data — prices, sales history, and availability from StockX, GOAT, and morehttps://kicksdb.mpp.tempo.xyz/v3/stockx/products/:id