# NFT Floor Price Multi-Chain Lookup

> NFT Floor Price Multi-Chain Lookup is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns NFT collection floor price in native currency and USD, 24h change, market cap, and data source across EVM chains (via CoinGecko) and Solana/Bitcoin Ordinals (via Magic Eden).

## Facts

- Endpoint: GET https://api.agentstools.dev/nft/floor
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nft-floor-price-multi-chain-lookup-9b1c7215
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t8vUU5KdHOiG6Dpn1Rmnk

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-floor-price-multi-chain-lookup-9b1c7215
```

Example prompt: What's the current floor price for Bored Ape Yacht Club on Ethereum — give me the floor in ETH and USD and the 24-hour change?

## When to prefer this

Use this endpoint when you need a fast, unified floor price lookup across multiple blockchains without managing separate CoinGecko and Magic Eden API keys. It's ideal for agents that need to compare NFT floors across EVM chains and Solana/Bitcoin in a single call, or when you want USD-normalized pricing alongside native currency floors without additional conversion logic.

## Known failure modes

- Collection not found — invalid slug, symbol, or contract address returns an error or empty result
- Unsupported chain — passing a chain not in the supported enum returns a validation error
- Missing required parameters — omitting both slug and contract for EVM collections results in an error
- Data lag — floor data may be slightly delayed depending on the upstream provider refresh rate
- Magic Eden collection symbol mismatch — Solana/Bitcoin collections require the exact marketplace symbol, not a display name

## How this service works

Multi-chain NFT collection floor price in one call: floor in native currency AND USD, 24h floor change percent, market cap and the resolved source. EVM via CoinGecko (pass chain+contract or a CoinGecko slug), Solana + Bitcoin-Ordinals via Magic Eden (pass chain plus the marketplace symbol as slug). Keyless, attributed.

## Output

Returns a JSON object with: floor price in the collection's native currency, floor price in USD, 24-hour floor price change percentage, market cap, and the resolved data source (CoinGecko for EVM, Magic Eden for Solana/Bitcoin).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "slug": {
       "type": "string",
       "description": "Collection id: a CoinGecko NFT id for EVM (e.g. bored-ape-yacht-club) or a Magic Eden collection symbol for solana / bitcoin."
      },
      "chain": {
       "enum": [
        "ethereum",
        "base",
        "polygon",
        "arbitrum",
        "optimism",
        "avalanche",
        "bsc",
        "solana",
        "bitcoin"
       ],
       "type": "string",
       "description": "Chain key. EVM names use CoinGecko; solana + bitcoin use Magic Eden. Optional when a global CoinGecko slug is given for an EVM collection."
      },
      "contract": {
       "type": "string",
       "description": "EVM contract address (0x + 40 hex). Use with an EVM chain."
      }
     }
    }
   },
   "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-floor-price-multi-chain-lookup-9b1c7215/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
