FortiBlox LogoFortiBlox Docs
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

EndpointMethodDescriptionCredits
/geyser/validatorsGETList validators10
/geyser/validator/:addressGETGet validator details5
/geyser/stakeGETGet stake statistics5
/geyser/stake/transactionsGETGet stake transactions10
/geyser/stake/account/:addressGETGet stake account info5
/geyser/validator/:address/stakeGETGet validator stake accounts15

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.