Ethereum Validator API
Programmatic access to Ethereum validator monitoring tools and network analytics data for Greece-based nodes. All endpoints require API key authentication.
Key API Features
Validator Analytics
Retrieve detailed statistics including balance history, attestation performance, and sync status for Ethereum validators in Greece.
Node Monitoring
Get real-time status updates for Ethereum nodes including uptime, network latency, and synchronization progress.
Authentication
All API requests require an API key sent in the Authorization
header. Get free API access via our contact form.
Authentication Header
Authorization: Bearer YOUR_API_KEY
Available Endpoints
GET /api/validators
Retrieve list of Ethereum validators in Greece with their current status metrics.
Parameters
Parameter | Type | Description |
---|---|---|
validator_key | string | Validator public key in hexadecimal format |
timestamp | integer | Unix epoch timestamp for historical query |
Response Example
{
"validator_active": true,
"balance_ether": 32.5,
"last_attested_block": 1234567,
"sync_status": "Synced",
"country": "GR",
"location": "Athens Datacenter",
"timestamp": 1719792000
}
GET /api/nodes
Get current status of Ethereum nodes monitored in Greece.
Parameters
Parameter | Type | Description |
---|---|---|
network | string | Ethereum network (mainnet/holesky) |
region | string | Geographic location code |
Response Example
[
{
"node_id": "123456",
"uptime": "99.8%",
"blocks_synced": 1234567,
"blockchain_height": 12345678,
"last_seen": 1719792000
}
]