Owner

OwnerByQueryString queries the owner of the NFT based on its class and id, same as ownerOf in ERC721

get

Since: nft v0.1.1

Query parameters
class_idstringOptional

class_id associated with the nft.

idstringOptional

id is a unique identifier of the NFT.

Responses
200
A successful response.
application/json
get
GET /cosmos/nft/v1beta1/owner HTTP/1.1
Host: tia-rest.nownodes.io
Accept: */*
{
  "owner": "text"
}

Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721

get
Path parameters
class_idstringRequired

class_id associated with the nft

idstringRequired

id is a unique identifier of the NFT

Responses
200
A successful response.
application/json
get
GET /cosmos/nft/v1beta1/owner/{class_id}/{id} HTTP/1.1
Host: tia-rest.nownodes.io
Accept: */*
{
  "owner": "text"
}