# Phantom API — ApeChain NFT Metadata Lookup

> Phantom API — ApeChain 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).

Retrieves NFT metadata for a given token ID and contract address on the ApeChain network

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/apechain/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-apechain-nft-metadata-lookup-1e90bf06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__nLG2N75-gLIOscFZi-H8

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-apechain-nft-metadata-lookup-1e90bf06 -d '<json body>'
```

Example prompt: Can you pull up the metadata for ApeChain NFT token ID 42 from contract address 0xAbCd1234...5678 — I want to see its name, image, and traits?

## When to prefer this

Use this endpoint when you specifically need NFT metadata from the ApeChain network and want pay-per-call pricing without a subscription. Prefer this over generic NFT APIs when working with ApeChain-native contracts, or when you need fast, direct on-chain data without indexer lag.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty response
- Token ID not minted or out of range returns a not-found error
- ApeChain RPC unavailability causes timeout or 503 error
- Malformed contractAddress or tokenId input causes a 400 validation error
- Payment not completed via x402 results in 402 Payment Required response

## 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 NFT metadata associated with the specified token ID and contract address on ApeChain, typically including token name, description, image URL, external URL, and an array of attributes or traits (trait_type and value pairs).

## 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-apechain-nft-metadata-lookup-1e90bf06/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)
