Batch StockX sneaker & streetwear price data via pay-per-call MPP endpoint.
What it does
KicksDB StockX Batch Prices is an MPP (Micropayment Protocol) endpoint hosted on Tempo that provides batch pricing data from StockX, covering sneakers and streetwear. It is part of the broader KicksDB suite, which aggregates market data — prices, sales history, and availability — from marketplaces like StockX, GOAT, and others.
The endpoint is located at /v3/stockx/prices and is designed for programmatic access by agents or applications that need current or recent StockX pricing for multiple items in a single call. Payment is handled via the Tempo MPP protocol, meaning callers settle per-request using pathUSD on the Tempo L2 network.
However, during probing the endpoint returned HTTP 404 on both HEAD and GET requests rather than the expected 402 payment challenge. The provider's root domain and all documentation paths also returned 404. This suggests the endpoint may be offline, moved, or require a different HTTP method (e.g., POST) that was not probed. Without a captured 402 challenge, pricing details, request/response schemas, and authentication parameters cannot be confirmed. Prospective users should verify availability directly before integrating.
Capabilities
Use cases
- —Retrieving current StockX prices for multiple sneaker SKUs in one request
- —Building price comparison tools across sneaker resale marketplaces
- —Feeding sneaker pricing data into trading or arbitrage bots
- —Populating product catalogs with live StockX market prices
Fit
Best for
- —Sneaker resale platforms needing batch StockX pricing
- —Agents automating sneaker market research
- —Developers building streetwear price aggregation tools
Not for
- —Non-sneaker/streetwear product pricing
- —Users needing free or unauthenticated access without crypto payment setup
Quick start
# Endpoint may require POST — verify liveness first
curl -X POST https://kicksdb.mpp.tempo.xyz/v3/stockx/prices \
-H 'Content-Type: application/json' \
-d '{"skus": ["DD1391-100", "DH7138-006"]}'Endpoint
Quality
The endpoint returned 404 on HEAD and GET probes instead of a 402 MPP challenge, and all documentation paths are unreachable. No schema, pricing, or response examples could be captured. The listing is based almost entirely on the existing Bazaar title and description, making this effectively a stub.
Warnings
- —Endpoint returned 404 on both HEAD and GET — no 402 MPP challenge captured; endpoint may be offline, moved, or require POST.
- —All crawled pages (root, /docs, /api, /pricing, /README) returned 404 — no documentation available.
- —No pricing, request schema, or response schema could be confirmed.
- —Liveness and functionality are unverified; integrate with caution.