# Phantom API — Zora Network RPC

> Phantom API — Zora Network RPC 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).

Provides JSON-RPC access to the Zora blockchain network, enabling on-chain data queries and smart contract interactions on Zora via a pay-per-call endpoint.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/zora/rpc
- 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-zora-network-rpc-6e2100c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CmHAc-bf2fzk3pr1_Ltb0

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-zora-network-rpc-6e2100c6 -d '<json body>'
```

Example prompt: Can you check the current block number on the Zora network and fetch the balance of wallet address 0xAbCd...1234 using an eth_getBalance RPC call?

## When to prefer this

Choose this endpoint when you specifically need to interact with the Zora blockchain network via standard JSON-RPC methods (eth_call, eth_getBalance, eth_getBlock, etc.) and want pay-per-call pricing without a subscription. Ideal for agents that need occasional or burst Zora chain access without committing to an RPC provider plan.

## Known failure modes

- Invalid JSON-RPC method name returns error object with code -32601
- Malformed params array causes parse error -32700
- Contract call reverts return execution error
- Payment failure (402) if x402 payment is not attached or insufficient
- Rate limiting or node unavailability returns 503 or 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 a standard JSON-RPC response object containing the result field with the requested on-chain data (e.g. block object, balance in hex wei, transaction receipt, contract return value) or an error object with code and message if the call fails.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "method": {
   "type": "string"
  },
  "params": {
   "type": "array",
   "items": {}
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phantom-api-zora-network-rpc-6e2100c6/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)
