Base network block status reconciled after payment across two pre-probed distinct-operator
Base network block status reconciled after payment across two pre-probed distinct-operator RPC endpoints
1000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-17
updated
Provider
obol.danieldutoit.net · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x4094383033C1861E2686eaC4d4BBae6F0031F5d2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"chain": {
"id": 8453,
"name": "Base"
},
"network": "eip155:8453",
"observed_at": "2026-09-10T15:41:03.000Z",
"observed_block": 51132758,
"observed_block_hash": "0x3c3ef53d548d15b1da11be5c5eb3e1435fd8e37e9f08a058d134cd1ee5cb7a91",
"provider_consistency": {
"agreement": true,
"provider_count": 2,
"providers": [
"base-public.nodies.app",
"mainnet.base.org"
]
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"chain": {
"additionalProperties": false,
"properties": {
"id": {
"const": 8453,
"type": "integer"
},
"name": {
"const": "Base",
"type": "string"
}
},
"required": [
"id",
"name"
],
"type": "object"
},
"network": {
"const": "eip155:8453",
"type": "string"
},
"observed_at": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{3})?Z$",
"type": "string"
},
"observed_block": {
"minimum": 0,
"type": "integer"
},
"observed_block_hash": {
"pattern": "^0x[0-9a-fA-F]{64}$",
"type": "string"
},
"provider_consistency": {
"additionalProperties": false,
"properties": {
"agreement": {
"const": true,
"type": "boolean"
},
"provider_count": {
"const": 2,
"type": "integer"
},
"providers": {
"items": {
"minLength": 1,
"type": "string"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"required": [
"agreement",
"provider_count",
"providers"
],
"type": "object"
}
},
"required": [
"network",
"chain",
"observed_block",
"observed_block_hash",
"observed_at",
"provider_consistency"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://obol.danieldutoit.net/v1/base/network-status" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://obol.danieldutoit.net/v1/base/network-status");
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://obol.danieldutoit.net/v1/base/network-status")
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/12429.json, and this resource appears in /discovery/resources and /discovery/search.