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
contract_type 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)
total_supply Total NFT Supply (number)required
total_transfers int64required
holder_count int64required
official_site Official Site URL (string)
{
"contract_type": "ERC20",
"name": "string",
"symbol": "string",
"icon": "string",
"total_supply": 0,
"total_transfers": 0,
"holder_count": 0,
"official_site": "string"
}
Loading...