VCS API Documentation
VeChain Stats
  • Introduction
  • Getting Started
    • 🗝️Getting an API Key
    • 🔓Authentication
    • 📬Postman
    • ✳️Swagger
  • API Endpoints
    • Account
      • Account Stats
      • ✨Account Extended Stats
      • Account Info
      • ✨Account VTHO Info
      • VET/VTHO Balance
      • ✨Transactions In
      • Transactions Out
      • ✨Token Transfers
      • ✨NFT Transfers
      • ✨DEX Trades
      • DEPRECATED: Internal Transfers
      • Historic VET/VTHO
    • Token
      • Token List
      • Token Info
      • Token Price
      • ✨Token Price List
      • Token Supply
      • ✨VIP180 Balance
      • VIP180 Balance Custom
      • ✨Token Holder List
    • Transaction
      • Transaction Status
      • Transaction Info
    • Block
      • Block Daily Stats
      • Block Info
      • Block Height
      • Block by reference
      • Block by timestamp
    • Contract
      • Contract Stats
      • Contract Info
      • Contract Code
    • NFT
      • NFT Token List
      • NFT Info
      • ✨VIP181 Balance
      • VIP181 Balance Custom
      • ✨NFT Holder List
    • Carbon
      • Address Emission
      • Block Emission
      • Transaction Emission
      • Network Emission
    • Network
      • Network Totals
      • Network Stats
      • Network Gas Stats
      • Authority Nodes
      • ✨Mempool
      • Node Token Count
      • ✨Node Token Stats
      • Thor Instance Size
      • X-Node List
    • API Info
      • API Info
      • API Ping
  • Support
    • FAQ
    • Rate Limits
    • Response HTTP Status
    • Common Error Messages
    • Socials
    • Change Log
  • Visit VeChain Stats
Powered by GitBook
On this page

Was this helpful?

  1. API Endpoints
  2. Network

Authority Nodes

Returns a list of all authority node addresses and their relevant data

https://api.vechainstats.com/v2/network/authority-nodes
    ?expanded=true
    &VCS_API_KEY=your_api_key

Note : This endpoint is throttled to 10 calls/minute regardless of API Pro tier.

Parameter
Description

expanded

Either true or false. Setting this option to true expands the response with extra information.

Output below is shortened and only serves as an example

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "0x061d774d5928aa82476eb0b46bc3cbd49d1d24df": {
            "endorser": "0x0da8fa475c8272d21be204fe8112d1e2cd698c96",
            "blocks_total_signed": 109980,
            "vtho_total_rewarded": 8525215,
            "last_block_signed": 16512578,
            "last_block_timestamp": 1695650140
        },
        "0xff5b7033808138af64c4200275a9265cde98cc98": {
            "endorser": "0x79c47ffe08296bada230cd5453a8d3c1a68fa2da",
            "blocks_total_signed": 83846,
            "vtho_total_rewarded": 1509808,
            "last_block_signed": 16512535,
            "last_block_timestamp": 1695649710
        }
    },
    "meta": {
        "count": 101,
        "expanded": true,
        "timestamp": 1695651762
    }
}
PreviousNetwork Gas StatsNextMempool

Last updated 1 year ago

Was this helpful?