nftokens
List holders for a collection
get
/nft/collection/{slug}/holders
operationId: nft-collectionHolders

Returns the holder list for an NFT collection, grouped by current owner. Each row is { owner, nftCount, firstAcquiredAt } where firstAcquiredAt is the earliest acquisition time among the holder's NFTs in the collection. Ordered by descending nftCount with owner ascending as a stable tiebreaker. Cursor-paginated via an opaque base64 {nftCount, owner} token. Returns an empty items array when the slug does not resolve to an indexed collection.

Unlock protected endpoints

Enter your Bearer token once to enable every protected route in this API reference.

HTTP bearer

Saved for this browser tab only. The credential is never sent until you test an endpoint.

Authorizations
NameLocationDetails
BearerAuthAuthorization header · bearerJWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`.
Path Parameters
NameTypeDefaultDescription
slug
required
string
Collection slug in `issuer:taxon` form. Example: `rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B:42`.
Query Parameters
NameTypeDefaultDescription
cursor
string
limit
integer50
Responses
200
application/json
Successful response
FieldTypeDescription
items
object[]
Holders ordered by descending `nftCount`, with `owner` ascending as a stable tiebreaker. Empty when the slug does not resolve to an indexed collection or the collection has no indexed NFTs.
items[].owner
string
XRPL account address that holds at least one NFT in the collection.
items[].nftCount
integer
Number of NFTs in the collection currently attributed to this owner.
items[].firstAcquiredAt
integer
Unix-seconds timestamp of the earliest acquisition time among the holder's NFTs in the collection.
nextCursor
object
Cursor for the next page, or null when this is the last page.
Example
Json
{
  "items": [
    {
      "owner": "string",
      "nftCount": 0,
      "firstAcquiredAt": 1745798400
    }
  ],
  "nextCursor": "string"
}
400
application/json
Invalid input data
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
401
application/json
Authorization not provided
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "UNAUTHORIZED",
  "message": "Authorization not provided",
  "issues": []
}
403
application/json
Insufficient access
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "FORBIDDEN",
  "message": "Insufficient access",
  "issues": []
}
404
application/json
Not found
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "NOT_FOUND",
  "message": "Not found",
  "issues": []
}
500
application/json
Internal server error
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}