NexusGeyser API
Validator & Stake Endpoints
Query validator information and stake distribution
Validator & Stake Endpoints
Access X1 Blockchain validator data, stake information, and staking transactions.
Endpoints
| Endpoint | Method | Description | Credits |
|---|---|---|---|
/geyser/validators | GET | List validators | 10 |
/geyser/validator/:address | GET | Get validator details | 5 |
/geyser/stake | GET | Get stake statistics | 5 |
/geyser/stake/transactions | GET | Get stake transactions | 10 |
/geyser/stake/account/:address | GET | Get stake account info | 5 |
/geyser/validator/:address/stake | GET | Get validator stake accounts | 15 |
GET /geyser/validators
List all active validators with pagination.
Request
curl "https://nexus.fortiblox.com/geyser/validators?limit=100&offset=0&api-key=$FORTIBLOX_API_KEY"Response
{
"success": true,
"data": [
{
"vote_account": "9B5XszUGdMaxCZ7uSQhPzdks5ZQSmWxrmzCSvtJ6Ns6g",
"activated_stake": "5000000000000",
"commission": 5,
"last_vote": 123456789,
"root_slot": 123456700,
"delinquent": false
}
]
}GET /geyser/validator/:address
Get detailed validator information.
Request
curl "https://nexus.fortiblox.com/geyser/validator/9B5XszUGdMaxCZ7uSQhPzdks5ZQSmWxrmzCSvtJ6Ns6g?api-key=$FORTIBLOX_API_KEY"GET /geyser/stake
Get network-wide stake statistics.
Response
{
"success": true,
"data": {
"total_stake": "400000000000000000",
"total_validators": 1500,
"average_commission": 7.5,
"delinquent_validators": 12
}
}See the full Geyser API documentation for complete details.