# Phantom API — Celo NFT Metadata

> Phantom API — Celo NFT Metadata 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 token and contract address on the Celo blockchain network.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/celo/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-celo-nft-metadata-aae915b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MFp3YPkYKvrDPzj4LycUf

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-celo-nft-metadata-aae915b6 -d '<json body>'
```

Example prompt: Can you pull the metadata for token ID 42 from the Celo NFT contract at address 0x1234abcd... — I need the name, image, and any trait attributes it has on-chain.

## When to prefer this

Choose this endpoint when you specifically need NFT token metadata from the Celo blockchain (not Ethereum, Polygon, or other EVM chains). It is a pay-per-call, no-subscription option ideal for agents that need occasional or low-volume lookups without committing to a monthly plan. Prefer this over generic blockchain RPC calls when you want a clean, pre-parsed metadata response rather than raw contract ABI calls.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty response
- Token ID does not exist on the contract — may return null or 404-equivalent
- Contract is not an NFT contract (ERC-721/ERC-1155) — unexpected or malformed response
- Metadata URI is off-chain and unreachable — image or attributes may be missing
- Payment failure via x402 protocol blocks the request
- Celo network congestion or RPC downtime causes timeout

## 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, typically including token name, description, image URL, external URL, and a list of trait attributes (type/value pairs) as stored in or referenced by the smart contract on the Celo network.

## 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-celo-nft-metadata-aae915b6/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)
