# Phantom API — BNB NFT Metadata Lookup

> Phantom API — BNB NFT Metadata Lookup 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).

Fetches on-chain NFT metadata for a given contract address and token ID on the BNB (BNB Smart Chain) network

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/bnb/nft/metadata
- 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-nft-metadata-lookup-03d9dd7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0u9C37hz4K4990Bgs3mRi

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-nft-metadata-lookup-03d9dd7b -d '<json body>'
```

Example prompt: Can you pull the metadata for token ID 1234 from the BNB Smart Chain NFT contract at 0xBd8A7ea8CFE89F6Bc15d3B7653EB06Da4567 — I need its name, image, and traits.

## When to prefer this

Use this endpoint when you specifically need NFT metadata from the BNB Smart Chain (BSC) network and want a pay-per-call model without managing RPC infrastructure. Prefer it over general-purpose blockchain explorers when you need structured metadata (name, image, traits) rather than raw transaction data, and when you want fast, reliable access without running your own BNB node.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty metadata
- Token ID not found within the contract returns a 404-style or null response
- Contract is not an NFT contract (e.g. ERC-20) causing a schema mismatch error
- Token metadata URI is unreachable or returns malformed JSON
- Network congestion or RPC issues on BNB Smart Chain causing timeouts
- Payment failure via x402 protocol resulting in 402 Payment Required

## 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 on-chain NFT metadata for the specified token on BNB Smart Chain, including fields such as token name, description, image URL, external URL, and an array of trait attributes (trait_type and value pairs), sourced directly from the blockchain or the token's metadata URI.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tokenId": {
   "type": "string"
  },
  "contractAddress": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phantom-api-bnb-nft-metadata-lookup-03d9dd7b/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)
