# 402.com.tr NFT Floor Price

> 402.com.tr NFT Floor Price is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

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

## Facts

- Endpoint: GET https://402.com.tr/api/x402/nft-floor
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-nft-floor-price-32877494
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gh_czSlUL_cOfKHa_WCTJ

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 402-com-tr-nft-floor-price-32877494
```

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 the current floor price for a specific Base network NFT collection identified by its contract address. Prefer this over general NFT APIs when working specifically with Base-chain collections and needing real-time OpenSea/LooksRare data. Ideal for agents tracking NFT market conditions, portfolio valuations, or automated floor price alerts.

## Known failure modes

- Contract address not found or not a valid Base NFT collection — returns error or empty result
- Collection not listed on supported marketplaces (OpenSea/LooksRare) — no floor price available
- Invalid contract address format — returns validation error
- Network/Alchemy API timeout — service unavailable error
- Collection exists but has no active listings — floor price may be null or zero

## 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.

## Output

The current floor price (in ETH or relevant currency) for the specified Base NFT collection as listed on OpenSea or LooksRare marketplaces, sourced via Alchemy. 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/402-com-tr-nft-floor-price-32877494/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
