Kasplex KRC20
  • Introduction
  • Protocols
    • Data Insertion Mechanism
    • KRC-20 Tokens
      • Deployment Mode
      • Basic Operation
        • deploy
        • mint
        • issue
        • burn
        • blacklist
        • chown
        • transfer
      • How to Trade KRC-20
        • list
        • send
  • Tools & REFERENCE
    • Kasplex Indexer
      • Guidelines
      • Ticker Reserved List
      • Consensus and Trust Model
    • Kasplex Indexer API
      • General
        • Get Node Status
      • KRC-20
        • Get Token List
        • Get Token Info
        • Get Address's Token List
        • Get Address's Token Balance
        • Get Token's Market Info
        • Get Token's Blacklist
        • Get Operation List
        • Get Operation Info
      • Archive
        • Get Archive Operation List
        • Get Archive Vspc List
    • Roadmap
Powered by GitBook
On this page
  1. Tools & REFERENCE
  2. Kasplex Indexer API
  3. KRC-20

Get Token Info

PreviousGet Token ListNextGet Address's Token List
get

Get the token's detailed information including statistics

Path parameters
tickstringRequired

Ticker or contract address of the token (case-insensitive)

Responses
200
Success
application/json
get
GET /v1/krc20/token/{tick} HTTP/1.1
Host: tn10api.kasplex.org
Accept: */*
200

Success

{
  "message": "Success",
  "result": [
    {
      "ca": "a0183c1f...",
      "name": "USDXYZ",
      "max": "2100000000000000",
      "lim": "0",
      "pre": "300000000000000",
      "to": "kaspa:qqabb6cz...",
      "dec": "8",
      "mod": "issue",
      "minted": "1500000000000000",
      "burned": "5500000000000000",
      "opScoreAdd": "779939540000",
      "opScoreMod": "799936660000",
      "state": "deployed",
      "hashRev": "eb1482705b07af..",
      "mtsAdd": "1712808987852",
      "holderTotal": "8225",
      "transferTotal": "78903",
      "mintTotal": "2880",
      "holder": [
        {
          "address": "kaspa:qra0p5kyzeh54p37gqwfu...",
          "amount": "300000000000000"
        },
        {
          "address": "kaspa:qrzeh54p0p5k37gqwfayu...",
          "amount": "16600000000000"
        }
      ]
    }
  ]
}