v1
latestOpenAPI 3.0.32026-07-1320201.0 MBEthereum Blockchain Queries
Get NFT Owner
This Method returns the owner of an NFT
get/api/v2/ethereum/nfts/{contract_address}/owner/{token_id}
Headers
X-Network'testnet' | 'mainnet'
Specify "testnet" for test network or leave empty for main network. Defaults to "mainnet" if not provided.
Authorizationstring required
Bearer token for authorization. Required for authenticated endpoints.
Content-Type'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data'
The MIME type of the request body.
Response
ERC721 owner fetched
Example response
{
"status": 200,
"ok": true,
"message": "ERC721 owner fetched",
"data": {
"owner": "0x5e032243d507c743b061ef021e2ec7fcc6d3ab89"
}
}