# AgenticFi Wallet Collectibles API

> AgenticFi Wallet Collectibles API 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).

Retrieves NFT and collectible holdings for a given wallet address across one or more EVM chains, with optional spam filtering and pagination.

## Facts

- Endpoint: GET https://defi-api.agenticfi.wtf/api/wallet/collectibles/%7Baddress%7D
- 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-wallet-collectibles-api-d42028e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ASvWE9grKb35Y0TosQsx-

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-wallet-collectibles-api-d42028e3
```

Example prompt: What NFTs and collectibles does wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e hold on Base and Ethereum? Filter out spam and return up to 100 results.

## When to prefer this

Use this endpoint when you need to enumerate NFTs and collectibles held by a specific EVM wallet address, especially when you need multi-chain support (Base, Ethereum, Arbitrum, etc.), spam filtering, or paginated results. Prefer this over generic blockchain explorers when building DeFi agent workflows that require structured NFT portfolio data with pay-per-call micropayment access via x402.

## Known failure modes

- Invalid or malformed wallet address returns 400 error
- Unsupported chain_id or chain name returns empty results or 400
- Payment not provided or insufficient USDC returns 402 Payment Required
- Rate limit exceeded returns 429
- Address with no collectibles returns empty list
- Invalid pagination cursor (offset) returns 400 or unexpected results

## How this service works

EVM collectibles for a wallet - ERC-721 and ERC-1155 holdings with spam filtering, pagination, and optional spam score explanations

## Output

A paginated list of NFT/collectible holdings for the given wallet address, including collection names, token IDs, chain context, and optionally spam scores and explanations. Includes a next_offset cursor for further pagination.

## 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. Legacy gateway alias for a single chain name, mapped to chain_ids Examples: base, ethereum, arbitrum"
      },
      "limit": {
       "type": "string",
       "title": "limit (optional)",
       "description": "Optional. Maximum number of entries to return, 1-2500 Examples: 100, 500"
      },
      "offset": {
       "type": "string",
       "title": "offset (optional)",
       "description": "Optional. Pagination cursor returned in next_offset Examples: eyJvZmZzZXQiOjEwMH0= (use next_offset from the previous response)"
      },
      "address": {
       "type": "string",
       "title": "address (required)",
       "description": "Required. Wallet address Examples: 0x742d35Cc6634C0532925a3b844Bc454e4438f44e, 0x1111111111111111111111111111111111111111"
      },
      "chain_ids": {
       "type": "string",
       "title": "chain_ids (optional)",
       "description": "Optional. Sim chain IDs and/or tags, e.g. '1,8453' or 'default' Examples: 8453, 1,8453, default"
      },
      "filter_spam": {
       "type": "string",
       "title": "filter_spam (optional)",
       "description": "Optional. Set to 'false' to include collectibles flagged as spam Examples: false"
      },
      "show_spam_scores": {
       "type": "string",
       "title": "show_spam_scores (optional)",
       "description": "Optional. Set to 'true' to include spam_score and explanations fields Examples: true"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenticfi-wallet-collectibles-api-d42028e3/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)
