# Phantom API – Latest Block (Humanity Network)

> Phantom API – Latest Block (Humanity Network) 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 from the Humanity blockchain network via a pay-per-call on-chain data endpoint

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/humanity/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-latest-block-humanity-network-164c8083
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5AE2mOFJfP82boaSmffFM

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-latest-block-humanity-network-164c8083 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you specifically need the latest block on the Humanity blockchain network and want a fast, pay-per-call lookup without setting up your own RPC node. Ideal for lightweight agents that need real-time block data without a subscription commitment. Choose over general-purpose RPC providers when you want USDC micropayment billing and 57+ network coverage from a single API surface.

## Known failure modes

- Payment not included or insufficient USDC via x402 — returns 402 Payment Required
- Network congestion or RPC node unavailability — returns 503 or timeout
- Malformed request body (wrong bodyType or method) — returns 400 Bad Request
- Humanity network is halted or has no new blocks — may return stale data or error
- Rate limiting if too many calls in short succession

## 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 data about the most recently produced block on the Humanity blockchain, typically including the block number (height), block hash, parent hash, timestamp, transaction count, and other block-level metadata from the Humanity network.

## 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-latest-block-humanity-network-164c8083/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)
