# x402 Bazaar NFT Floor Price

> x402 Bazaar NFT Floor Price is a paid API for AI agents from api.relai.fi, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the current floor price for a Base NFT collection by contract address, sourced from OpenSea and LooksRare via Alchemy

## Facts

- Endpoint: POST https://api.relai.fi/relay/1782567677091/api/x402/nft-floor
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-bazaar-nft-floor-price-bb59a07f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mUsJNkeIZ4zN23L93BbhE

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-bazaar-nft-floor-price-bb59a07f -d '<json body>'
```

Example prompt: What's the current floor price for the Base NFT collection at contract address 0xd4307e0acd12cf46fd6cf93bc264f5d5d1598792?

## When to prefer this

Use this endpoint when you need a quick, cheap ($0.01) floor price lookup for a specific Base NFT collection contract and only need the minimum listing price from OpenSea or LooksRare. Prefer this over broader NFT analytics APIs when you just need the floor figure for Base-native collections without full market depth or historical data.

## Known failure modes

- Collection contract address not listed on any supported marketplace — returns empty or null floor price
- Invalid or non-Base contract address — returns error or no data
- Collection not indexed by Alchemy — no coverage
- Payment not completed (402 returned) — agent must pay $0.01 USDC on Base to 0x973a31858f4d2125f48c880542da11a2796f12d6 and retry
- Network or relay downtime — 5xx error from relai.fi

## How this service works

Current floor price for a Base NFT collection (OpenSea / LooksRare) via Alchemy. Pass the collection contract address. Coverage is limited to marketplace-listed collections. For agents tracking NFT markets. Paid via x402: $0.01 in USDC on Base (eip155:8453) to 0x973a31858f4d2125f48c880542da11a2796f12d6. Returns 402 with payment requirements; pay and retry.

## Output

Returns the current floor price for the specified Base NFT collection as sourced from OpenSea and/or LooksRare via Alchemy — including the price value, currency denomination, and marketplace source. Coverage is limited to marketplace-listed collections.

## 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": [
      "contract"
     ],
     "properties": {
      "contract": {
       "type": "string",
       "description": "Collection contract address"
      }
     }
    }
   },
   "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/x402-bazaar-nft-floor-price-bb59a07f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relai.fi](https://www.zero.xyz/host/api.relai.fi/llms.txt)
