# Phantom API — Zora Latest Block

> Phantom API — Zora Latest Block 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 the most recent block data from the Zora blockchain network via pay-per-call Web3 infrastructure

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/zora/block/latest
- 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-latest-block-64fa96d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jXwVnroTahFMszFsgIH8I

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-latest-block-64fa96d9 -d '<json body>'
```

Example prompt: What is the latest block on the Zora blockchain right now? Pull the current block number and timestamp for me.

## When to prefer this

Choose this endpoint when you need real-time, pay-per-call access to Zora's latest block without managing your own RPC node infrastructure. Ideal for agents needing lightweight, on-demand chain head queries at low cost ($0.01 USDC) without subscription overhead.

## Known failure modes

- Network timeout if Zora RPC node is unreachable
- HTTP 402 payment required if USDC payment is not attached
- Empty or malformed block response if Zora network is experiencing issues
- Rate limiting if too many calls are made in quick succession
- Payment failure if insufficient USDC balance

## 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 the latest block data from the Zora blockchain, including block number, block hash, timestamp, and associated metadata about the chain head state.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {},
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phantom-api-zora-latest-block-64fa96d9/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)
