# Phantom API — Ink Token Metadata

> Phantom API — Ink Token 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-15).

Fetches token metadata (name, symbol, decimals, supply, etc.) for a smart contract on the Ink network

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/ink/token/metadata
- 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-ink-token-metadata-4d6f26d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0Qp1movPuFndg-H9V3pxZ

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-ink-token-metadata-4d6f26d2 -d '<json body>'
```

Example prompt: Can you look up the token metadata for the contract address 0xabc123... on the Ink network — I want to know its name, symbol, and decimals?

## When to prefer this

Use this endpoint when you need fast, pay-per-call token metadata lookups specifically on the Ink network without committing to a subscription. Ideal for agents that occasionally need to resolve unknown token contracts, validate token parameters, or enrich DeFi data pipelines with on-chain metadata for Ink-based assets.

## Known failure modes

- Invalid or malformed contract address returns an error or empty response
- Contract address not deployed on Ink network returns not-found or null metadata
- Network timeout or infrastructure downtime returns a 5xx error
- Non-token contract address (e.g. multisig or proxy) may return incomplete or unexpected metadata
- Payment failure via x402 protocol returns 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 token metadata fields for the given Ink network contract address, typically including token name, symbol, decimal precision, and total supply.

## Request schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phantom-api-ink-token-metadata-4d6f26d2/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)
