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

Token Info

Returns information on a token symbol such as socials, holder count, contract and more.

https://api.vechainstats.com/v2/token/info
    ?token=vet
    &expanded=true
    &VCS_API_KEY=your_api_key
Parameter
Description

token

Symbol of the requested token

expanded

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

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "name": "VeThor",
        "type": "VIP180",
        "symbol": "vtho",
        "decimals": 18,
        "contract": "0x0000000000000000000000000000456e65726779",
        "creation_timestamp": 1530316800,
        "creation_block": "0",
        "deployer_address": "0x0000000000000000000000000000000000000000",
        "website": "https://www.vechain.org/",
        "whitepaper": "https://www.vechain.org/whitepaper/",
        "telegram": "https://t.me/vechain_official_english",
        "twitter": "https://twitter.com/vechainofficial",
        "reddit": "https://www.reddit.com/r/Vechain/",
        "medium": "https://medium.com/@vechainofficial",
        "github": "https://github.com/vechain",
        "token_holders": 2045049
    },
    "meta": {
        "symbol": "vtho",
        "timestamp": 1692788187
    }
}
PreviousToken ListNextToken Price

Last updated 1 month ago

Was this helpful?