get_market_stats
Retrieve global CryptoPunks market statistics including floor price, supply, listings, bids, and trading volume for comprehensive market analysis.
Instructions
Get global CryptoPunks market statistics: current floor price, total supply, number listed for sale, number with bids, total volume, and other aggregate market data. This is the best endpoint for a market overview.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/handlers.ts:317-320 (handler)The implementation of the get_market_stats tool handler, which calls api.getMarketIndex() and returns the result.
case "get_market_stats": { const raw = await api.getMarketIndex(); return ok(raw); } - src/tools.ts:127-131 (registration)The tool definition and input schema registration for get_market_stats.
get_market_stats: { description: "Get global CryptoPunks market statistics: current floor price, total supply, number listed for sale, number with bids, total volume, and other aggregate market data. This is the best endpoint for a market overview.", inputSchema: z.object({}), },