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

VIP180 Balance

This endpoint returns the VIP180 token balances of a given address

https://api.vechainstats.com/v2/token/vip180
    ?address=0x3FB604A9b40e4c1aBF0Eb91A67bB90FC06dfb27E
    &expanded=false
    &VCS_API_KEY=your_api_key
Parameter
Description

address

The address for which you want to know it's token balance.

expanded

Either true or false. Setting this option to true expands the response with name, contract and decimals.

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "vtho": "497382339.912165195246439",
        "sha": "897889972.44071606",
        "hai": "49832113.43189046",
        "veed": "151000000",
        "yeet": "0.69"
    },
    "meta": {
        "address": "0x3fb604a9b40e4c1abf0eb91a67bb90fc06dfb27e",
        "timestamp": 1692782620
    }
}

This VIP180 token balances in this response are limited to the tokens that are fully integrated on VeChainStats. Non-Supported token balances can be requested in VIP180 Balance Custom. Since VET is the native token and not VIP180 it's not returned in this endpoint.

PreviousToken SupplyNextVIP180 Balance Custom

Last updated 17 days ago

Was this helpful?

✨