isNFTOwner
Confirms whether an address owns an NFT. Also provides relevant block number for context and confirms the NFT standard (ERC-721 / ERC-1155).
Request
Endpoint
Headers
Authorization
Token { YOUR-API-KEY }
Parameters
contractAddress
Hexadecimal address that defines the NFT collection.
tokenId
Unique identifier that specifies the NFT within the contract address.
ownerAddress
Hexadecimal public user address.
Example
Response
Request Status Code
200
Success! Check JSON results for ownership confirmation and contextual information.
401
User authentication details failed.
Body
Interpretation
If the "response" is true, it means that the provided owner address does own the provided NFT.
This endpoint serves validation for both ERC721 and ERC1155 ABI contract types. For more information on what distinguishes these types, please refer to Ethereum's documentation.
Last updated