# NFT Collection Floor & Sales Data via Reservoir

> NFT Collection Floor & Sales Data via Reservoir is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns NFT collection floor price, top bid, volume stats, rank, and recent sales across Ethereum, Base, Arbitrum, Optimism, and Polygon using Reservoir.

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.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/x402-deployer-x402-deployer-workers-dev-7787b4da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_afgdD2fB7GeMsEUvZjhjh

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 x402-deployer-x402-deployer-workers-dev-7787b4da -d '<json body>'
```

Example prompt: What's the current floor price, top bid, and 7-day volume for the Pudgy Penguins collection on Ethereum, and can you also show me the most recent sales?

## When to prefer this

Use this endpoint when you need comprehensive NFT collection market data — floor price, bid depth, multi-period volume, and recent sale history — across major EVM chains (Ethereum, Base, Arbitrum, Optimism, Polygon) in a single call, powered by Reservoir's aggregated marketplace data.

## Known failure modes

- Unknown or invalid collection address returns empty result or 404
- Unsupported chain returns an error indicating which networks are valid
- Reservoir API downtime may cause timeout or 503
- Malformed contract address returns validation error
- Collection with no recent sales returns empty sales array but may still return floor data

## How this service works

NFT collection floor + recent sales via Reservoir. Ethereum / Base / Arbitrum / Optimism / Polygon. Floor, top bid, 24h/7d/30d volume + change, ranks, recent sales.

## Output

Returns floor price in ETH/USD, top bid, 24h/7d/30d volume with percentage changes, collection rank, and a list of recent sales including token IDs, sale prices, and timestamps — sourced from Reservoir across supported EVM chains.

## Example request

```json
{
 "input": {
  "body": {
   "chain": "ethereum",
   "collection": "pudgy-penguins",
   "recent_sales_limit": 5,
   "include_recent_sales": true
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "collection": {
       "type": "string",
       "description": "CoinGecko NFT collection slug, e.g. 'bored-ape-yacht-club'. The only input the handler reads."
      }
     },
     "required": [
      "collection"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "floor_native": {
       "type": "number"
      },
      "floor_usd": {
       "type": "integer"
      },
      "market_cap_rank": {
       "type": "integer"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-7787b4da/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
