# Phantom API – SEI Latest Block

> Phantom API – SEI 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 SEI blockchain network in real time

## Facts

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

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-sei-latest-block-f1d499c4 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need real-time, up-to-date block data specifically from the SEI blockchain network. Prefer it over generic blockchain explorers when you need programmatic, pay-per-call access without subscription overhead and when low-latency on-chain data is critical for agent workflows.

## Known failure modes

- SEI node or RPC endpoint temporarily unavailable — returns 5xx error
- Payment not processed via x402 — returns 402 Payment Required
- Network congestion causing stale or delayed block data
- Invalid or malformed request body — returns 400 Bad Request
- SEI network downtime or chain halt resulting in no new blocks

## 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 details from the SEI blockchain, including block number (height), block hash, timestamp, and potentially transaction count and 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-sei-latest-block-f1d499c4/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)
