Get data of MT contracts for certain EOAs

Query data of certain MTs.

Request
Security:
path Parameters
mt-address
required
string

NFT Contract address to query

owner-address
required
string

EOA to query

token-id
required
string

MT ID to query (in hexadecimal)

header Parameters
x-chain-id
required
string

Kaia Network Chain ID (1001 or 8217)

Responses
200
400
404
get/v2/contract/mt/{mt-address}/owner/{owner-address}/token/{token-id}
Request samples
curl -i -X GET \
  -u <username>:<password> \
  'https://th-api.klaytnapi.com/v2/contract/mt/{mt-address}/owner/{owner-address}/token/{token-id}' \
  -H 'x-chain-id: string'
Response samples
application/json
{
  • "tokenId": "0x1",
  • "owner": "0xb8bb4b109f18eb6f292757aaec623200f1a41369",
  • "tokenAddress": "0x2c2382bcca41295495973be1d5a997d21f77b50e",
  • "totalSupply": "0xaf298d050e4395d69670b12b7f41000000000000",
  • "tokenUri": "http://evahello.com",
  • "balance": "0x1f",
  • "transactionHash": "0x23586a41831bd2044e1793d136ee7b9ac387ea376208dcd87bbded6f7c9032ee",
  • "transferFrom": "0x39262962d3889b02915f943d6f917edcf6c71f5a",
  • "transferTo": "0xb8bb4b109f18eb6f292757aaec623200f1a41369",
  • "updatedAt": 1607319007
}