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 Price

Returns the last known price of a token on vechain

https://api.vechainstats.com/v2/token/price
    ?token=vtho
    &expanded=true
    &VCS_API_KEY=your_api_key

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

The returned prices should be used for information purposes only. VeChainStats doesn't take any accountability for damages incurred due to outdated or manipulated prices.

Parameter
Description

token

Symbol of the requested token

expanded

Either true or false. Setting this option to true expands the response with VET, EUR, CNY price.

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "price_usd": "0.00092253",
        "price_eur": "0.00085198",
        "price_cny": "0.00672516",
        "price_vet": "0.05807554",
        "last_updated": 1692797521
    },
    "meta": {
        "token": "vtho",
        "expanded": true,
        "timestamp": 1692797521
    }
}

Not all tokens have their price information supported, a price can only be returned if a token is supported on a central exchange or meets volume and liquidity standards.

PreviousToken InfoNextToken Price List

Last updated 1 month ago

Was this helpful?