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

Account VTHO Info

Returns the paid, generated and sponsored VTHO of a requested address

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

https://api.vechainstats.com/v2/account/vtho-info
    ?address=0x0da8fa475c8272d21be204fe8112d1e2cd698c96
    &VCS_API_KEY=your_api_key
Parameter
Description

address

The address you want to query

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "vtho_paid": "73.862420000000000000",
        "vtho_generated": "20708583.9283780002000000",
        "vtho_sponsored": "0"
    },
    "meta": {
        "address": "0x0da8fa475c8272d21be204fe8112d1e2cd698c96",
        "timestamp": 1695971364
    }
}
PreviousAccount InfoNextVET/VTHO Balance

Last updated 11 months ago

Was this helpful?

✨