Selecting an NFT contract and an EOA will fetch data of the NFTs by EOA created by the NFT contract.
size
is optional. (Min = 1, Max = 1000, Default = 100)size=100
) when given a 0size=1000
) when given a value higher than 1000curl -i -X GET \ -u <username>:<password> \ 'https://th-api.klaytnapi.com/v2/contract/nft/{nft-address}/owner/{owner-address}?size=0&cursor=string' \ -H 'x-chain-id: string'
{- "items": [
- {
- "tokenId": "0x7",
- "owner": "0xe5389503156ee02775ee18552f0c9d9846b66a91",
- "previousOwner": "0x0000000000000000000000000000000000000000",
- "transactionHash": "0x9b9d553d8b3141eabdc6ececd44958475366b1bc289088248b2b3dadcecf8ab4",
- "createdAt": 1597308968,
- "updatedAt": 1597308968
}
], - "cursor": ""
}