Selecting an NFT contract will fetch data of all NFTs created by this 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}/token?size=0&cursor=string' \ -H 'x-chain-id: string'
{- "items": [
- {
- "tokenId": "0x9",
- "owner": "0x36884a060be5438226c4deaf799b0f7de5abd5df",
- "previousOwner": "0x0000000000000000000000000000000000000000",
- "transactionHash": "0x2f6e8113862c1dbdc76a2fb29cda2dbefeca5878897af0bb3df6822323e89440",
- "createdAt": 1597718863,
- "updatedAt": 1597718863
}
], - "cursor": ""
}