Get Asset Details

Return details about The Asset created using ASA on Algorand

API Doc

Swagger Doc | ReDoc

Curl call example

curl -X GET "https://0.0.0.0:7000/v2/nftkit/nft/Algorand/chain/{chain}/asset/{assetId}/params" 
-H  "accept: application/json"

Path Params :

  • chain : chain to work with. Either ALGORAND_TESTNET , ALGORAND_BETANET, ALGORAND_MAINNET

  • assetId : The id of the Asset

Example :

curl -X GET "http://0.0.0.0:7000/v2/nftkit/nft/Algorand/chain/ALGORAND_TESTNET/asset/257177850/params" 
-H  "accept: application/json"

Response :

{
  "index": 0,
  "createdAtRound": 0,
  "deleted": true,
  "destroyedAtRound": 0,
  "params": {
    "clawback": "string",
    "creator": "string",
    "decimals": 0,
    "defaultFrozen": true,
    "freeze": "string",
    "manager": "string",
    "name": "string",
    "reserve": "string",
    "total": 0,
    "unitName": "string",
    "url": "string"
  }
}

Last updated