# ChainRay NFT Floor Price

> ChainRay NFT Floor Price is a paid API for AI agents from chainray.online, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the current NFT collection floor price for a given contract address on a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/nft-floor/%7Baddress%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-nft-floor-price-01982003
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C_8_ReXLGxcQwoQ3ZOXgE

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 chainray-nft-floor-price-01982003
```

Example prompt: What's the current floor price for the NFT collection at contract address 0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D on Ethereum?

## When to prefer this

Use this endpoint when you need real-time NFT floor price data for a specific collection by contract address, especially across multiple chains supported by ChainRay. Prefer this over aggregator APIs when you need pay-per-request pricing without subscription commitments, or when operating in an x402 payment-enabled agent workflow.

## Known failure modes

- Invalid or non-NFT contract address returns an error or empty result
- Unsupported chain identifier returns a 400 or 404 error
- Contract address not found on the specified chain returns no data
- Rate limiting or payment failure returns a 402 Payment Required
- Network congestion may cause stale or delayed floor price data

## How this service works

The most complete blockchain data and intelligence service for AI agents. 93 endpoints across 46 chains, from gas fees to DeFi analytics, with real-time streams, intent routing, and verifiable proofs. Pay-per-request via x402.

## Output

The agent receives the current floor price of the specified NFT collection on the given blockchain, expressed in the native currency or a standard unit, allowing price comparison and valuation decisions.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chain": "ethereum",
   "address": "0x1234567890123456789012345678901234567890"
  }
 }
}
```

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network"
      },
      "address": {
       "type": "string",
       "description": "Wallet or contract address"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-nft-floor-price-01982003/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainray.online](https://www.zero.xyz/host/chainray.online/llms.txt)
