Get Non Fungible Token
GET/api/v1/nfts/:tokenAddress
Free [3 Credits]
Retrieve non-fungible-token.
Request
Path Parameters
tokenAddress stringrequired
token address
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
contractType Contract Type (string)
Possible values: [ERC20
, KIP7
, KIP17
, KIP37
, ERC721
, ERC1155
, CONSENSUS_NODE
, CUSTOM
, UNKNOWN
, UNKNOWN_
]
name NFT Name (string)
symbol NFT Symbol (string)
icon NFT Image (string)
totalSupply Total NFT Supply (number)required
totalTransfers int64required
holderCount int64required
officialSite Official Site URL (string)
{
"contractType": "ERC20",
"name": "string",
"symbol": "string",
"icon": "string",
"totalSupply": 0,
"totalTransfers": 0,
"holderCount": 0,
"officialSite": "string"
}
Loading...