# Blockvault — Base Block Reader

> Blockvault — Base Block Reader is a paid API for AI agents from oraclepost.higgsfield.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-18).

Fetches live on-chain data for a specific Base block (or the latest) including timestamp, transaction count, base fee, gas used/limit, and miner address.

## Facts

- Endpoint: GET https://oraclepost.higgsfield.app/api/premium/block
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockvault-base-block-reader-501f947c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0Iw59Uw3aMHVcp-lYwnSi

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 blockvault-base-block-reader-501f947c
```

Example prompt: Pull the live on-chain data for Base block 123456789 — I need the timestamp, transaction count, base fee, gas used and limit, and miner address directly from the chain.

## When to prefer this

Choose this endpoint when you need authoritative, uncached, real-time block-level data directly from the Base chain — especially block metadata like timestamp, miner, gas fields, and transaction count for a specific block number. Prefer it over general Ethereum RPC wrappers when you want a simple REST interface without setting up a node connection, and when freshness guarantees matter (no stale cache).

## Known failure modes

- Invalid block number format returns an error
- Block number in the future or beyond chain head returns not found
- Network timeout if the Base node is temporarily unreachable
- Omitting required query param defaults to latest block (not a failure, but may surprise callers expecting a specific block)

## How this service works

A Base block read live from the chain: timestamp, transaction count, base fee, gas used and limit, miner. Pass ?n=<number> or omit for the latest block. No third-party API, no cache.

## Output

Returns an object containing the block's timestamp, number of transactions, base fee per gas, gas used, gas limit, and miner address — all read live from the Base chain with no caching or third-party intermediaries.

## 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"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "n"
     ],
     "properties": {
      "n": {
       "type": "string",
       "description": "Block number (decimal); omit for latest"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockvault-base-block-reader-501f947c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oraclepost.higgsfield.app](https://www.zero.xyz/host/oraclepost.higgsfield.app/llms.txt)
