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. Block

Block Daily Stats

Returns metadata and stats of the blocks produced on a given date

https://api.vechainstats.com/v2/block/stats
    ?date=2023-09-21
    &expanded=true
    &VCS_API_KEY=your_api_key
Parameter
Description

date

The requested date formatted as YYYY-MM-DD

expanded

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

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "block_height_first": 16473008,
        "block_height_last": 16477572,
        "block_count": 4565,
        "block_total_size": 34946772,
        "block_total_gas_limit": 136573351403,
        "block_total_gas_used": 11843923045,
        "txns_total_count": 21532,
        "clauses_total_count": 243016,
        "vtho_total_paid": 120699.67,
        "vtho_total_rewarded": 36210.18,
        "vtho_total_burned": 84489.77
    },
    "meta": {
        "date": "2023-09-21",
        "expanded": true,
        "partial_data": true,
        "timestamp": 1695300045
    }
}
PreviousBlockNextBlock Info

Last updated 1 year ago

Was this helpful?