# NFT Transfer History

> NFT Transfer History is a paid API for AI agents from www.x402financialdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns recent ERC-721 NFT transfer events for a given Ethereum wallet address, including token IDs, collection name/symbol, and counterparty addresses.

## Facts

- Endpoint: GET https://www.x402financialdata.com/nft-transfers/:address
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nft-transfer-history-60fce2b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D4meJveHT3yGg0XC_-m6q

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 nft-transfer-history-60fce2b5
```

Example prompt: Show me the last 50 NFT transfers for the Ethereum wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 — I want to see the token IDs, collection names, and who sent or received each one.

## When to prefer this

Use this endpoint when you need a quick, consolidated view of ERC-721 NFT transfer activity for a specific Ethereum wallet in a single call, especially when you need both collection metadata (name/symbol) and counterparty addresses together. Prefer this over raw Etherscan API calls when you want a simplified, pay-per-use interface without managing your own Etherscan API key.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported chain value (non-eth) returns a validation error
- Limit exceeding 100 is rejected
- Address with no NFT transfer history returns an empty list
- Etherscan API downtime or rate limiting may cause 5xx errors

## How this service works

Recent ERC-721 NFT transfer events for a wallet address on Ethereum in one call: token ID, collection name/symbol, and counterparties -- from Etherscan's V2 API. Supports optional limit (default 25, max 100). $0.01/call.

## Output

A list of up to 100 recent ERC-721 transfer events for the wallet, each including the token ID, collection name and symbol, sender address, recipient address, and transaction details such as hash and block number.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "EVM wallet address"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "chain": {
       "enum": [
        "eth"
       ],
       "type": "string",
       "description": "Which chain to query. Only 'eth' is supported right now."
      },
      "limit": {
       "type": "integer",
       "description": "Max transfers to return, default 25, max 100."
      }
     }
    }
   },
   "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/nft-transfer-history-60fce2b5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.x402financialdata.com](https://www.zero.xyz/host/www.x402financialdata.com/llms.txt)
