GET /nft/holders/address/{account}
GET

/v1/nft/holders/address/{account}

Collections/NFTs held by wallet

AuthNone — works without a key

Request

GEThttps://api.xrpl.to/v1/nft/holders/address/rhsxg4xH8FtYc3eR53XDSjTGfKQsaAGaqm
Path parameterValueDescription
accountAn XRPL account, its r-address
Query parameterValueDescription
offsetint
limitint (max 100)
curl 'https://api.xrpl.to/v1/nft/holders/address/rhsxg4xH8FtYc3eR53XDSjTGfKQsaAGaqm'

Response

200Example response100 ms · just now · 0.9 KB · 46 lines
https://api.xrpl.to/v1/nft/holders/address/rhsxg4xH8FtYc3eR53XDSjTGfKQsaAGaqm
{
  "success": true,
  "address": "rhsxg4xH8FtYc3eR53XDSjTGfKQsaAGaqm",
  "totalCollections": 81,
  "totalNFTs": 9980,
  "offset": 0,
  "limit": 20,
  "pages": 5,
  "holdings": [
    {
      "slug": "xshrooms",
      "name": "xShrooms",
      "count": 1061,
      "percentage": "13.26",
      "rank": 1
    },
    {
      "slug": "parc",
      "name": "Pixel Ape Rowboat Club (PARC)",
      "count": 1008,
      "percentage": "10.08",
      "rank": 1
    },
    {
      "slug": "monkeyphunks",
      "name": "Monkey Phunks",
      "count": 957,
      "percentage": "20.72",
      "rank": 1
    },
    {
      "slug": "mysteriousbananas",
      "name": "Mysterious Bananas",
      "count": 955,
      "percentage": "21.04",
      "rank": 1
    },
    {
      "slug": "hogs",
      "name": "HOGs",
      "count": 863,
      "percentage": "10.74",
      "rank": 1
    }
  ]
}

Long arrays and strings are shortened in the example; Send request for the full answer.

What it does

Collections/NFTs held by wallet

An account is its r-address, e.g. rN7n3473SaZBCG4dFL83w7a1RXtXtbk2D9.
OpenAPI