# Phantom API — Sui Latest Block

> Phantom API — Sui 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 on the Sui blockchain network

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/sui/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-sui-latest-block-9c52cc3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rkUSyfHn71Ra_Fj3NaqVj

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-sui-latest-block-9c52cc3c -d '<json body>'
```

Example prompt: What's the latest block on the Sui blockchain right now? I need the current block height and timestamp.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call lookup of the current Sui blockchain head without managing your own Sui node or RPC subscription. Ideal for lightweight agents that only occasionally need Sui chain state and don't want to commit to a monthly RPC plan.

## Known failure modes

- Network timeout if Sui RPC node is unreachable
- 402 Payment Required if USDC payment is missing or insufficient
- 503 if Sui mainnet is experiencing downtime
- Empty or malformed response if the underlying Sui node is out of sync

## 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 latest block on the Sui blockchain, including block height/number, block hash, timestamp, and potentially transaction count or validator information for that 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-sui-latest-block-9c52cc3c/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)
