Fetch real-time offers for products on GOAT via a pay-per-call sneaker data API.
What it does
KicksDB GOAT Real-Time Offers is an MPP-enabled endpoint that returns current marketplace offers for a given product on GOAT, the popular sneaker and streetwear resale platform. The endpoint follows a RESTful pattern where you supply a product ID as a path parameter and receive offer data in return.
The endpoint is live and settles payments via the Tempo method on chain ID 4217 (Tempo L2) using pathUSD. Each call costs 5,000 base units of pathUSD (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. This is part of the broader KicksDB suite, which aggregates sneaker and streetwear market data — prices, sales history, and availability — from platforms including StockX, GOAT, and others.
No OpenAPI schema, documentation pages, or example responses were found during crawling; the provider's origin returns 404 on all standard doc paths. The endpoint URL pattern (`/v3/realtime/goat/products/:id/offers`) strongly suggests a versioned REST API where `:id` is a GOAT product identifier, and the response likely contains an array of current buy/sell offers. However, the exact response schema is unconfirmed.
Capabilities
Use cases
- —Retrieve current buy and sell offers for a specific sneaker on GOAT
- —Power a price-comparison tool across sneaker resale marketplaces
- —Feed real-time offer data into automated sneaker trading or alerting bots
- —Enrich product catalog pages with live GOAT marketplace pricing
Fit
Best for
- —Developers building sneaker resale price aggregators
- —Automated agents that need real-time GOAT offer data
- —Streetwear market analytics dashboards
Not for
- —Historical sales data analysis (this endpoint is real-time offers only)
- —Non-GOAT platforms — use other KicksDB endpoints for StockX, etc.
Quick start
curl -X GET "https://kicksdb.mpp.tempo.xyz/v3/realtime/goat/products/123456/offers" \
-H "Authorization: Payment <tempo-payment-token>"Endpoint
Quality
The endpoint is confirmed live via a valid 402 MPP challenge with clear pricing, but no documentation, OpenAPI schema, or example responses are available. The response format and product ID conventions are entirely inferred from the URL pattern and existing description.
Warnings
- —No documentation or OpenAPI schema found — all doc paths return 404.
- —Response schema is unknown; the exact structure of offer data is unconfirmed.
- —Product ID format for GOAT is not documented; callers must discover valid IDs independently.
- —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, chainId=4217, and feePayer=true.https://kicksdb.mpp.tempo.xyz/v3/realtime/goat/products/:id/offers
- —KicksDB provides sneaker & streetwear market data — prices, sales history, and availability from StockX, GOAT, and more.https://kicksdb.mpp.tempo.xyz/v3/realtime/goat/products/:id/offers