# Phantom API — Monad NFT Sales

> Phantom API — Monad 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 NFT sales transaction data on the Monad blockchain, filterable by block range and contract address.

## Facts

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

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-monad-nft-sales-61d4857a -d '<json body>'
```

Example prompt: Pull the last 50 NFT sales on Monad for contract 0xAbC123... from block 1000000 to 1050000, sorted in descending order.

## When to prefer this

Use this endpoint when you need on-chain NFT sales data specifically from the Monad network, with fine-grained control over block range, sort order, and result count. Prefer it over general blockchain explorers when you need programmatic, pay-per-call access without subscription overhead, or when your use case is scoped to Monad NFT transactions.

## Known failure modes

- Invalid contract address format returns a validation error
- fromBlock greater than toBlock returns empty results or an error
- Requested block range not yet indexed returns no data
- Exceeding rate limits or missing payment (x402) returns 402 Payment Required
- Very large block ranges with high limits may time out or return partial data

## 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 sales events from the Monad blockchain, including details such as transaction data, block numbers, buyer/seller information, and sale prices, filtered by the specified block range and contract address, ordered and paginated according to the request 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-monad-nft-sales-61d4857a/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)
