# NFT Collection Floor Price & Stats API

> NFT Collection Floor Price & Stats API is a paid API for AI agents from nft-floor.api.klymax402.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-16).

Returns floor price, trading volume, and market statistics for an NFT collection by contract address on Ethereum or Base

## Facts

- Endpoint: GET https://nft-floor.api.klymax402.com/api/collection
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nft-collection-floor-price-stats-api-1642486e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CcgFAF6QUdnyjoH2ZHHNg

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability nft-collection-floor-price-stats-api-1642486e
```

Example prompt: What's the current floor price, volume, and collection stats for Bored Ape Yacht Club (contract 0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D) on Ethereum?

## When to prefer this

Use this endpoint when you need real-time floor price, volume, and market statistics for a specific NFT collection identified by its contract address on Ethereum or Base. Prefer this over generic NFT marketplaces when you need programmatic, per-call data access with per-query micropayment pricing rather than a subscription.

## Known failure modes

- Invalid or non-NFT contract address returns error or empty data
- Unsupported chain parameter (not ethereum or base) may return error
- Contract address for a collection with no active listings may return zero floor price
- Network timeout if blockchain data provider is unavailable
- Rate limiting or payment failure if x402 micropayment is not completed

## How this service works

Get NFT collection floor price, volume, and stats (POST variant)

## Output

Returns NFT collection market data including floor price (lowest listed price), trading volume, and other collection-level statistics such as number of owners, total supply, and market cap, scoped to the specified blockchain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain: ethereum or base. Default: ethereum"
      },
      "address": {
       "type": "string",
       "description": "NFT collection contract address. e.g. 0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D (BAYC)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nft-collection-floor-price-stats-api-1642486e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nft-floor.api.klymax402.com](https://www.zero.xyz/host/nft-floor.api.klymax402.com/llms.txt)
