Fetch real-time StockX product data (prices, details) per call via MPP micropayment.
What it does
KicksDB's StockX real-time product endpoint returns up-to-date product information from StockX given a product ID. It is part of the broader KicksDB suite, which provides sneaker and streetwear market data — including prices, sales history, and availability — from platforms like StockX, GOAT, and others.
The endpoint is accessed via the Micro-Payment Protocol (MPP) and settles on the Tempo L2 chain (chainId 4217). Each call costs 5,000 base units of pathUSD (0x20c0…8b50, 6 decimals), which equals $0.005 (half a cent) per request. The provider covers gas fees (feePayer: true), so callers only pay the data fee. Payment intent is "charge", meaning each request is a one-shot micropayment — no session or subscription required.
The REST pattern is `GET /v3/realtime/stockx/products/:id`, where `:id` is a StockX product identifier (typically a UUID or URL key). No OpenAPI schema or documentation pages were found on the provider's origin; the endpoint structure and pricing are inferred entirely from the MPP 402 challenge and the Bazaar listing metadata. Response format is not documented, but is expected to be JSON containing product details such as name, brand, colorway, retail price, and current market pricing from StockX.
Capabilities
Use cases
- —Retrieve current StockX market prices for a specific sneaker or streetwear product
- —Build a price comparison tool across resale platforms
- —Power a sneaker bot or alerting system with real-time product data
- —Enrich product catalogs with live resale market information
Fit
Best for
- —Developers building sneaker/streetwear resale tools
- —AI agents that need real-time product pricing from StockX
- —Low-volume, pay-per-call access to StockX data without a direct partnership
Not for
- —Bulk historical sales data downloads (no batch endpoint documented)
- —Users who need GOAT or other platform data from this specific endpoint (this route is StockX-only)
Quick start
curl -X GET "https://kicksdb.mpp.tempo.xyz/v3/realtime/stockx/products/air-jordan-1-retro-high-og-chicago-lost-and-found" \
-H "Authorization: Payment <tempo_payment_token>"Endpoint
Quality
The endpoint is live (402 MPP challenge confirmed) and pricing is clear ($0.005/call on Tempo L2). However, there is no OpenAPI schema, no documentation, no example responses, and all crawled pages return 404. The response shape and available fields are entirely unknown.
Warnings
- —No documentation or OpenAPI schema found — all crawled pages return 404.
- —Response format and fields are undocumented; callers must discover the schema empirically.
- —Currency address 0x20c0…8b50 is assumed to be pathUSD with 6 decimals based on Tempo conventions; if decimals differ, the stated price ($0.005) would be incorrect.
- —The :id parameter format (UUID vs. URL key vs. slug) is not documented.
Citations
- —Endpoint returns HTTP 402 with MPP challenge, confirming it is live.https://kicksdb.mpp.tempo.xyz/v3/realtime/stockx/products/:id
- —Payment amount is 5000 base units on Tempo L2 (chainId 4217) with feePayer true.https://kicksdb.mpp.tempo.xyz/v3/realtime/stockx/products/:id
- —Part of KicksDB: Sneaker & streetwear market data from StockX, GOAT, and more.https://kicksdb.mpp.tempo.xyz/v3/realtime/stockx/products/:id