# Phantom API — Kaia NFT Sales

> Phantom API — Kaia 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 the Kaia blockchain, filtered by block range, contract address, and ordering.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/kaia/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-kaia-nft-sales-a1841240
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_imYiEKpP13bCQjHPS_Gdo

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-kaia-nft-sales-a1841240 -d '<json body>'
```

Example prompt: Pull the last 50 NFT sales on the Kaia blockchain for contract address 0xAbC123... ordered from newest to oldest, covering blocks 12000000 to 12050000.

## When to prefer this

Use this endpoint when you specifically need NFT sales data on the Kaia blockchain (formerly Klaytn) and need fine-grained block-range filtering. Prefer this over general NFT APIs when you need pay-per-call pricing without subscription commitment, or when Kaia network coverage is required and your primary NFT data provider does not support it.

## Known failure modes

- Invalid contract address format returns an error
- fromBlock greater than toBlock yields empty or error response
- Limit value out of acceptable range may be rejected
- Block range spanning too many blocks may time out or be truncated
- Payment failure (x402) blocks the request entirely
- Network unavailability for Kaia RPC returns upstream error

## 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 events on the Kaia blockchain, including transaction details such as block numbers, contract addresses, token IDs, and sale prices, filtered by the specified block range and contract address, ordered and paginated per request.

## 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-kaia-nft-sales-a1841240/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)
