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 Info

Returns metadata of a requested account address

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

https://api.vechainstats.com/v2/account/info
    ?address=0xFF5ba88a17b2E16D23FF6647E9052E937AcB1406
    &expanded=true
    &VCS_API_KEY=your_api_key
Parameter
Description

address

The address you want to query

expanded

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

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "vcs_alias": "Coinbase (Hot Wallet 4)",
        "has_code": false,
        "node_type": "",
        "balance_vet": "343339.037779306251836017",
        "balance_vtho": "60837952.2920319642473895",
        "first_seen_block": 15694364,
        "first_seen_timestamp": 1687467730,
        "last_seen_block": 16521178,
        "last_seen_timestamp": 1695736140,
        "has_txns_in": true,
        "has_txns_out": true
    },
    "meta": {
        "address": "0xff5ba88a17b2e16d23ff6647e9052e937acb1406",
        "expanded": true,
        "timestamp": 1695736222
    }
}

Works for both regular accounts and contract addresses

PreviousAccount Extended StatsNextAccount VTHO Info

Last updated 10 months ago

Was this helpful?