Query list of all owners for certain MTs

Selecting an MT contract and a token ID will data of the EOA that owns the tokens.

Size

  • The query parameter size is optional. (Min = 1, Max = 1000, Default = 100)
  • Returns an error when given a negative number
  • Uses default (size=100) when given a 0
  • Uses the maximum value (size=1000) when given a value higher than 1000
Request
Security:
path Parameters
mt-address
required
string

NFT Contract address to query

token-id
required
string

MT ID to query (in hexadecimal)

query Parameters
cursor
string

Offset for specifying a certain position

size
integer <int64>

Number of response items (min=1, max=1000, default=100)

Example: size=1
header Parameters
x-chain-id
required
string

Kaia Network Chain ID (1001 or 8217)

Responses
200
400
404
get/v2/contract/mt/{mt-address}/token/{token-id}
Request samples
curl -i -X GET \
  -u <username>:<password> \
  'https://th-api.klaytnapi.com/v2/contract/mt/{mt-address}/token/{token-id}?cursor=string&size=0' \
  -H 'x-chain-id: string'
Response samples
application/json
{
  • "items": [
    ],
  • "cursor": ""
}