# Delx Base Latest Block

> Delx Base Latest Block is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the latest Base mainnet block header (number, hash, timestamp, gas) via live JSON-RPC for $0.001 USDC per call

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/base-block
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-base-latest-block-5c383dc6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JOR8lgMpEpIFrPepPQ5zg

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 delx-base-latest-block-5c383dc6 -d '<json body>'
```

Example prompt: What's the latest block on Base mainnet right now — give me the block number, hash, timestamp, and gas info?

## When to prefer this

Choose this endpoint when you need a single, real-time Base mainnet block header without managing your own RPC node or API key — ideal for agents that need lightweight chain-tip checks, gas estimates from recent blocks, or timestamp anchoring in a pay-per-call model at $0.001 USDC.

## Known failure modes

- RPC node unavailable or rate-limited — returns 5xx error
- Payment not processed correctly via x402 protocol — returns 402 Payment Required
- Network congestion causes delayed or stale block response
- Malformed response if Base network experiences reorg at query time

## How this service works

Latest Base mainnet block header via live JSON-RPC for $0.001 USDC—number, hash, timestamp, gas.

## Output

Returns the latest Base mainnet block header as a JSON object including block number, block hash, parent hash, timestamp, gas limit, and gas used — sourced live from a JSON-RPC node at the moment of the call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "block": {
   "type": "string"
  },
  "full_transactions": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {},
  "tool_name": "get_base_latest_block"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-base-latest-block-5c383dc6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
