# Phantom API — World Chain Latest Block

> Phantom API — World Chain 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-14).

Fetches the most recent block data from the World Chain blockchain network

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/worldchain/block/latest
- 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-world-chain-latest-block-b0f17fea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jaykecVuDCCn6O0o6ODs-

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-world-chain-latest-block-b0f17fea -d '<json body>'
```

Example prompt: What's the latest block on World Chain right now — give me the block number, hash, and timestamp.

## When to prefer this

Choose this endpoint when you specifically need real-time latest block data from the World Chain network and want pay-per-call pricing with no subscription overhead. Prefer this over general-purpose RPC providers when you want a simple HTTP POST interface with x402 micropayment support and no API key management. Best suited for agents that need occasional block lookups rather than high-volume streaming.

## Known failure modes

- Network congestion or RPC node downtime may cause timeouts or empty responses
- World Chain node sync lag may return a block that is slightly behind the true head
- Payment failure via x402 protocol results in 402 response and no data returned
- Malformed request body may return a 400 or 422 validation error
- Service unavailability on Vercel hosting may produce 500 or 503 errors

## 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 object from the World Chain network, including block number, block hash, parent hash, timestamp, miner/validator address, gas used, gas limit, and list of transaction hashes or count contained in the block.

## 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-world-chain-latest-block-b0f17fea/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)
