Per-call StockX daily sales data for sneakers and streetwear via MPP on Tempo L2.
What it does
KicksDB's StockX Daily Sales endpoint returns daily sales data for a given StockX product, identified by its product ID in the URL path. It 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 pay-per-call via the Micropayment Protocol (MPP), settling on Tempo L2 (chain ID 4217). Each request costs 500 base units of pathUSD (currency contract 0x20c0…8b50), which at 6 decimals equals $0.0005 per call. The provider covers gas fees (feePayer: true), so callers only pay the data fee. Payment is one-shot (intent: charge) — no session or subscription required.
No OpenAPI schema or documentation pages were found on the provider's origin. The endpoint is confirmed live: it returns a well-formed 402 Payment Required challenge on GET. The URL pattern `/v3/stockx/products/:id/sales/daily` suggests a RESTful GET endpoint where `:id` is a StockX product identifier. Response schema and available query parameters (e.g., date ranges, pagination) are unknown from the available material.
Capabilities
Use cases
- —Retrieve daily sales volume and price data for a specific StockX product
- —Build sneaker price tracking dashboards or alerts
- —Analyze resale market trends for streetwear and sneakers
- —Feed sneaker valuation models with historical sales data
- —Power comparison shopping agents that check StockX pricing
Fit
Best for
- —Agents or apps that need on-demand StockX sales data without a subscription
- —Sneaker resale analytics and price monitoring
- —Low-cost, pay-per-call market data retrieval
Not for
- —Bulk historical data exports (no evidence of batch endpoints)
- —Real-time streaming price feeds (intent is charge, not session)
- —Data from platforms other than StockX (this specific endpoint is StockX-only)
Quick start
curl -X GET "https://kicksdb.mpp.tempo.xyz/v3/stockx/products/YOUR_PRODUCT_ID/sales/daily" \
-H "Authorization: Payment <tempo-payment-token>"Endpoint
Quality
The endpoint is confirmed live with a valid 402 MPP challenge, and pricing is clear. However, no documentation, OpenAPI schema, example responses, or query parameter details are available — the listing is largely inferred from the URL pattern and Bazaar description.
Warnings
- —No documentation or OpenAPI schema found; all crawled pages returned 404.
- —Response schema is unknown — no example responses available.
- —Available query parameters (date range, pagination, etc.) are undocumented.
- —Currency contract 0x20c000000000000000000000b9537d11c60e8b50 assumed to be pathUSD with 6 decimals based on Tempo L2 conventions; if decimals differ, the stated price ($0.0005) would be incorrect.
Citations
- —Endpoint returns a 402 MPP challenge with method=tempo, intent=charge, amount=500, chainId=4217https://kicksdb.mpp.tempo.xyz/v3/stockx/products/:id/sales/daily
- —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/sales/daily