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

Block Emission

Returns the co2e accounted to the production of a requested block number

https://api.vechainstats.com/v2/carbon/co2e-block
    ?blocknum=16538235
    &VCS_API_KEY=your_api_key
Parameter
Description

blocknum

The block number to request the emission data of

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "number": 16538235,
        "hash": "0x00fc5a7b6de7fe17d79aae453f2fd3478c625ebb3c9ae07c5536951d15d3075c",
        "co2e_emitted": "0.17729761",
        "timestamp": 1695906710
    },
    "meta": {
        "blocknum": 16538235,
        "type": "block",
        "unit": "grams",
        "disclaimer": "https://vechainstats.com/disclaimer/",
        "timestamp": 1695975591
    }
}

The CO2e calculation and data model used to determine the VechainThor Blockchain emissions are based on the best available information and methods at this time. However, these methods and information may change in the future due to new research, updated methodologies, or changes to the underlying data. Therefore, the emissions calculations and data for the current period may be subject to revision in the future. We will make reasonable efforts to keep the vechain blockchain emissions data up-to-date and accurate, and we appreciate your understanding as we strive to improve the emissions reporting.

PreviousAddress EmissionNextTransaction Emission

Last updated 1 year ago

Was this helpful?