Get Account Nft Inventories
GET/api/v1/accounts/:accountAddress/nft-inventories
Free [3 Credits]
Retrieve the list of inventories for a non-fungible-token.
Request
Path Parameters
accountAddress stringrequired
account address
Query Parameters
excludeIfTokenUriIsEmpty boolean
Default value:
true
page int32
Possible values: >= 1
Results page you want to retrieve (1..N)
Example: 1
size int32
Number of records per page, min: 1, Max: 2000
Example: 20
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
Array [
]
results
object[]
required
nft
object
required
symbol Symbol (string)required
name Name (string)required
icon Icon (BASE64) (string)
contract_address Contract Address (string)required
decimal int32required
verified Verified (boolean)required
total_supply Total Supply (number)required
implementation_address Implementation Address (string)
nft_type NFT Type (string)required
Possible values: [ERC20
, KIP7
, KIP17
, KIP37
, ERC721
, ERC1155
, CONSENSUS_NODE
, CUSTOM
, UNKNOWN
, UNKNOWN_
]
token_id Token ID (string)required
token_uri Token URI (string)required
token_count Token Count (integer)
paging
object
required
total_count int64required
current_page int32required
last booleanrequired
total_page int32required
property
object
property name* object
{
"results": [
{
"nft": {
"symbol": "string",
"name": "string",
"icon": "string",
"contract_address": "string",
"decimal": 0,
"verified": true,
"total_supply": 0,
"implementation_address": "string"
},
"nft_type": "ERC20",
"token_id": "string",
"token_uri": "string",
"token_count": 0
}
],
"paging": {
"total_count": 0,
"current_page": 0,
"last": true,
"total_page": 0
},
"property": {}
}
Loading...