Get Account Non Fungible Token Balances Of Kip17
GET/api/v1/accounts/:accountAddress/nft-balances/kip17
Free [3 Credits]
List of non-fungible token (KIP-17) balances owned by the account.
Request
Path Parameters
accountAddress stringrequired
account address
Query Parameters
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
contract
object
required
contractAddress Contract Address (string)required
contractType Contract Type (string)
Possible values: [ERC20
, KIP7
, KIP17
, KIP37
, ERC721
, ERC1155
, CONSENSUS_NODE
, CUSTOM
, UNKNOWN
, UNKNOWN_
]
tokenId Token ID (string)
tokenCount Number of NFTs (integer)required
paging
object
required
totalCount int64required
currentPage int32required
last booleanrequired
totalPage int32required
property
object
property name* object
{
"results": [
{
"contract": {
"contractAddress": "string",
"contractType": "ERC20"
},
"tokenId": "string",
"tokenCount": 0
}
],
"paging": {
"totalCount": 0,
"currentPage": 0,
"last": true,
"totalPage": 0
},
"property": {}
}
Loading...