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 Operation List

PreviousGet Token's BlacklistNextGet Operation Info
get

Get the list of token operations (at least one query parameter with "address" or "tick" must be provided)

Query parameters
nextstringOptional

Cursor to start next page, returned by the last request.

prevstringOptional

Cursor to start previous page, returned by the last request.

addressstringOptional

Filtered by address (case-insensitive)

tickstringOptional

Filtered by ticker or contract address of the token (case-insensitive)

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

Success

{
  "message": "Success",
  "prev": "text",
  "next": "text",
  "result": [
    {
      "p": "KRC-20",
      "op": "deploy",
      "tick": "KASP",
      "max": "2100000000000000",
      "lim": "100000000000",
      "pre": "0",
      "dec": "8",
      "mod": "mint",
      "from": "kaspa:qra0p5ky...",
      "to": "kaspa:qqabb6cz...",
      "opScore": "779066550003",
      "hashRev": "eb1482705b07af...",
      "feeRev": "100010000",
      "txAccept": "1",
      "opAccept": "1",
      "opError": "",
      "mtsAdd": "1712808987852",
      "mtsMod": "1712808987852",
      "checkpoint": "b1825b0e47af70..."
    },
    {
      "p": "KRC-20",
      "op": "transfer",
      "ca": "a0183c1f...",
      "amt": "1000000000000",
      "from": "kaspa:qra0p5ky...",
      "to": "kaspa:qqabb6cz...",
      "opScore": "879066550007",
      "hashRev": "2705b0eb1487af...",
      "feeRev": "0",
      "txAccept": "1",
      "opAccept": "1",
      "opError": "",
      "mtsAdd": "1712811987807",
      "mtsMod": "1712811987807",
      "checkpoint": "182b0e4b57af70..."
    }
  ]
}