Skip to main content
GET
/
api
/
nfts
/
owners
Get NFT owners
curl --request GET \
  --url https://api.walletsuite.io/api/nfts/owners \
  --header 'x-api-key: <api-key>'
{
  "ok": true,
  "code": "<string>",
  "message": "<string>",
  "data": {
    "chain": "<string>",
    "contract": "<string>",
    "tokenId": "<string>",
    "owners": [
      {
        "owner": "<string>",
        "quantity": "<string>"
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

API key provided by WalletSuite team

Query Parameters

chain
string
required
contract
string
required
tokenId
string
required

Response

200 - */*

OK

ok
boolean
required
code
string
required
message
string
required
data
object