get_floor_price
Retrieve the current floor price of CryptoPunks in ETH to identify the lowest active asking price across the entire collection for market analysis.
Instructions
Get the current floor price of CryptoPunks — the lowest active asking price across the entire collection. Returns value in ETH. For full details on the floor punk itself, use get_floor_punk instead.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/api.ts:129-131 (handler)The function that makes the API call to get the floor price.
export async function getFloorPrice() { return get(DATA_BASE, "/api/punks", { action: "floor" }); } - src/tools.ts:82-86 (schema)Tool definition and schema for get_floor_price.
get_floor_price: { description: "Get the current floor price of CryptoPunks — the lowest active asking price across the entire collection. Returns value in ETH. For full details on the floor punk itself, use get_floor_punk instead.", inputSchema: z.object({}), },