# AgenticFi NFT Wallet Holdings Lookup

> AgenticFi NFT Wallet Holdings Lookup is a paid API for AI agents from defi-api.agenticfi.wtf, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns all NFTs held by a wallet address, including collection info, floor prices, and token metadata

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/wallet/nfts/:address
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenticfi-nft-wallet-holdings-lookup-ef0a5d03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2QIg2BPWkPkwh5T-z2oCw

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 agenticfi-nft-wallet-holdings-lookup-ef0a5d03
```

Example prompt: What NFTs does the wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e hold on Base? Show me the collections, floor prices, and metadata.

## When to prefer this

Use this endpoint when you need a comprehensive view of NFTs held by a specific wallet, including collection-level floor pricing and per-token metadata. Ideal for portfolio analysis, NFT valuation, or user asset discovery in DeFi/Web3 agent workflows.

## Known failure modes

- Invalid or malformed wallet address returns 400 error
- Wallet address not found or has no NFTs returns empty array
- Unsupported chain key returns error or empty result
- Rate limiting or payment failure (x402) blocks the request
- Temporary provider downtime returns 5xx error

## How this service works

NFTs held by a wallet - collection, floor price, metadata

## Output

A list of NFTs held by the wallet, organized by collection, with floor prices and token-level metadata such as name, image, traits, and token ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "pathParams",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. Wallet address Examples: 0x742d35Cc6634C0532925a3b844Bc454e4438f44e, 0x1111111111111111111111111111111111111111"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "title": "chain (optional)",
       "description": "Optional. Chain key Examples: base, ethereum, arbitrum"
      },
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. Wallet address Examples: 0x742d35Cc6634C0532925a3b844Bc454e4438f44e, 0x1111111111111111111111111111111111111111"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-nft-wallet-holdings-lookup-ef0a5d03/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-api.agenticfi.wtf](https://www.zero.xyz/host/defi-api.agenticfi.wtf/llms.txt)
