Latest block on any major EVM chain: block number, timestamp, age in seconds, base fee and
Latest block on any major EVM chain: block number, timestamp, age in seconds, base fee and gas used/limit. The cheapest possible liveness and chain-tip check for an agent: confirm a chain is progressing, timestamp an observation, or pick a block for a query.
1000 (raw units)
price
13
calls / 30d
3
unique payers
2026-09-18
updated
Provider
chain.cyberwarex.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x058D0Cc5CC97e61e8A9f38D6d6365bce525921B2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"chain": "base"
},
"type": "http"
},
"output": {
"example": {
"age_seconds": 3,
"base_fee_gwei": 0.0061,
"chain": "base",
"chain_id": 8453,
"gas_limit": 150000000,
"gas_used": 18234012,
"hash": "0x9a1c…",
"number": 51142663,
"timestamp": 1789081234,
"tx_count": 212
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"chain": {
"default": "base",
"description": "EVM chain to query.",
"enum": [
"base",
"ethereum",
"arbitrum",
"optimism",
"polygon"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"age_seconds": {
"type": "integer"
},
"base_fee_gwei": {
"type": "number"
},
"chain": {
"type": "string"
},
"chain_id": {
"type": "integer"
},
"gas_limit": {
"type": "integer"
},
"gas_used": {
"type": "integer"
},
"hash": {
"type": "string"
},
"number": {
"type": "integer"
},
"timestamp": {
"type": "integer"
},
"tx_count": {
"type": "integer"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://chain.cyberwarex.com/block" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://chain.cyberwarex.com/block");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://chain.cyberwarex.com/block")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6847.json, and this resource appears in /discovery/resources and /discovery/search.