get_floor_punk
Retrieve the cheapest available CryptoPunk for sale with its index, owner, price, and attributes to identify current market opportunities.
Instructions
Get the specific CryptoPunk currently listed at the floor price — the cheapest punk for sale right now, with its full details including index, owner, price, and attributes.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/handlers.ts:278-281 (handler)The handler case for 'get_floor_punk' which calls the API wrapper and returns the result.
case "get_floor_punk": { const result = await api.getFloorPunk(); return ok(result); } - src/api.ts:133-135 (helper)The API wrapper function that performs the actual network request to fetch the floor punk.
export async function getFloorPunk() { return get(DATA_BASE, "/api/punks", { action: "floor-punk" }); }