# Phantom API — BNB Chain NFT Sales

> Phantom API — BNB Chain 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-14).

Retrieves NFT sales transaction history on BNB Chain, filterable by contract address and block range

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/bnb/nft/sales
- 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/phantom-api-bnb-chain-nft-sales-0933e5cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WHWifWYWvHUhGqR2DTDte

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-bnb-chain-nft-sales-0933e5cd -d '<json body>'
```

Example prompt: Fetch the last 50 NFT sales on BNB Chain for contract address 0xABCD1234 descending by block, starting from block 30000000 up to block 31000000.

## When to prefer this

Use this endpoint when you need historical NFT sales data specifically on BNB Chain (BSC), with fine-grained block-range filtering. Prefer it over generic blockchain explorers when you need programmatic, pay-per-call access without API key management, or when you need to scope queries precisely to a contract address and block window.

## Known failure modes

- Invalid or non-existent contract address returns empty results or error
- fromBlock greater than toBlock causes invalid range error
- Limit exceeding API maximum returns error or truncated results
- Network/RPC downtime on BNB Chain causes timeout or 503
- Payment failure via x402 protocol blocks the request

## 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

A list of NFT sale events on BNB Chain matching the query, each containing details such as transaction hash, block number, buyer/seller addresses, token ID, and sale price. Results are paginated up to the specified limit and sorted by the chosen order.

## 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-bnb-chain-nft-sales-0933e5cd/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)
