# Tokennfttx – ERC-721 NFT Transfer History by Address

> Tokennfttx – ERC-721 NFT Transfer History by Address is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves ERC-721 (NFT) token transfer history for a given wallet address on any EVM-compatible chain, with optional filtering by contract, block range, and pagination.

## Facts

- Endpoint: POST https://stablecrypto.dev/api/etherscan/account/tokennfttx
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokennfttx-erc-721-nft-transfer-history-by-address-c3ec2aee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RZoti_Y06rbt-zSS5AJbn

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 tokennfttx-erc-721-nft-transfer-history-by-address-c3ec2aee -d '<json body>'
```

Example prompt: Show me all ERC-721 NFT transfers for wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum mainnet (chain ID 1), sorted from oldest to newest.

## When to prefer this

Use this endpoint when you need ERC-721 NFT transfer history for a specific wallet address on any EVM chain. It is preferable over generic token transfer endpoints when you specifically need NFT (non-fungible token) activity, and over portfolio balance endpoints when you need historical movement data rather than current holdings. The Etherscan-backed data source provides reliable, indexed on-chain transfer events.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Unsupported chain ID returns an error or no data
- Block range too wide may return timeout or truncated results
- Contract address filter returns empty if no transfers match
- Rate limiting or payment failure returns a 402 or 429 error
- Empty response if the address has no NFT transfer history on the specified chain

## How this service works

Pay-per-request access to CoinGecko, DefiLlama, Alchemy, and Etherscan APIs. No auth, no subscriptions.

## Output

A list of ERC-721 token transfer events associated with the given wallet address, including transaction hashes, block numbers, timestamps, NFT contract addresses, token IDs, sender and recipient addresses, and optional pagination metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number"
  },
  "sort": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  },
  "offset": {
   "type": "number"
  },
  "address": {
   "type": "string",
   "description": "Wallet address"
  },
  "chainid": {
   "type": "number",
   "description": "EVM chain ID (1=Ethereum, 137=Polygon, 8453=Base, etc.)"
  },
  "endblock": {
   "type": "number"
  },
  "startblock": {
   "type": "number"
  },
  "contractaddress": {
   "type": "string",
   "description": "Filter by NFT contract"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokennfttx-erc-721-nft-transfer-history-by-address-c3ec2aee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablecrypto.dev](https://www.zero.xyz/host/stablecrypto.dev/llms.txt)
