# Phantom API — Avalanche NFT Sales

> Phantom API — Avalanche NFT Sales is a paid API for AI agents from phantom-api-omega.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches historical NFT sales data on the Avalanche blockchain, filterable by block range, contract address, limit, and sort order.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/avalanche/nft/sales
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/phantom-api-avalanche-nft-sales-9972b57a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LsFMiWm2D8NOThkmE-o3x

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 phantom-api-avalanche-nft-sales-9972b57a -d '<json body>'
```

Example prompt: Pull the last 50 NFT sales on Avalanche for contract address 0xABC123... ordered from newest to oldest.

## When to prefer this

Choose this endpoint when you specifically need NFT sales data on the Avalanche blockchain with flexible block-range filtering and per-call pay-as-you-go pricing via x402 USDC micropayments, rather than a subscription-based indexer. It is ideal for agents that need sporadic or targeted historical sales queries without committing to a monthly API plan.

## Known failure modes

- Invalid or missing contractAddress may return empty results or an error
- fromBlock greater than toBlock returns an error or empty set
- Unsupported block range (too large) may result in timeout or truncated results
- Malformed contract address format returns a validation error
- Exceeding rate limits or payment failure via x402 returns a 402 Payment Required error
- Network congestion or RPC node issues may cause delayed or failed responses

## How this service works

Lightning-fast access to blockchain data, smart contract insights, and Web3 infrastructure across 57+ networks. Pay-per-call via x402.

## Output

Returns a list of NFT sale records on the Avalanche network including transaction details, block numbers, contract addresses, buyer/seller information, and sale prices, paginated and ordered according to the supplied parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number"
  },
  "order": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  },
  "toBlock": {
   "type": "number"
  },
  "fromBlock": {
   "type": "number"
  },
  "contractAddress": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phantom-api-avalanche-nft-sales-9972b57a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phantom-api-omega.vercel.app](https://www.zero.xyz/host/phantom-api-omega.vercel.app/llms.txt)
