General

This endpoint returns general information about the VinuChain token. This includes decimals, supply information, price, burn stats, name and symbol.

Get general information

GET https://api.vinu.cash/general

Query Parameters

Name
Type
Description

human

boolean

Display numbers in a human-readable format (instead of raw)

{
  "supply": {
    "total": "999999998900000000000000000",
    "max": "999999998900000000000000000",
    "circulating": "73070008307921448622434000",
    "excluded": "926929990592078551377566000",
    "burned": "5000001100000000000000000"
  },
  "excludedAddresses": [
    {
      "address": "0x1f2ac2470a9e11f772aa69334efe218e7e74e394",
      "label": "Ecosystem Development",
      "balance": "496999979997094584500000000"
    },
    {
      "address": "0x18f7b518c7ae8a1b8068813393c9cb67b0fc27ba",
      "label": "Private Allocation",
      "balance": "100000000000000000000000000"
    },
    {
      "address": "0xd9a1d542a1216294b176f65b0c2c426f4803f38d",
      "label": "Public Allocation",
      "balance": "5733956599251080390000000"
    },
    {
      "address": "0x08466ae89b568c218feb9cda6879ec989ee59124",
      "label": "Airdrop Allocation",
      "balance": "10000000000000000000000000"
    },
    {
      "address": "0x03f41e419fa9c5aa9e567fc21eaeba8f853ec7ea",
      "label": "Foundation Allocation",
      "balance": "90000000000000000000000000"
    },
    {
      "address": "0xf39257cd28cd3dbdeb47bf9c4549d415a31716c1",
      "label": "Project Development",
      "balance": "224186052996290050000000000"
    },
    {
      "address": "0x96135581190Ba89C947658d585CF6C9d3a2652Cb",
      "label": "Cashback Rewards",
      "balance": "10000999442836487566000"
    },
    {
      "address": "0x2Bf83D080d8Bc4715984e75E5b3D149805d11751",
      "label": "Token Contract Address",
      "balance": "0"
    }
  ],
  "decimals": 18,
  "name": "VinuChain",
  "symbol": "VC",
  "marketData": {
    "price": 0.02256493,
    "marketCap": 0,
    "volume": 951521,
    "ath": 0.02969447
  }
}

Last updated