Skip to main content
GET
/
tenant
/
{tenantId}
/
token
/
holders
Retrieves a paginated list of token holders for a specific token contract.
curl --request GET \
  --url https://api.example.com/tenant/{tenantId}/token/holders
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Path Parameters

TenantId
integer<int64>
required

Query Parameters

tenantId
integer<int64>

Identifier of the tenant.

TokenContractAddress
string
Cursor
string
PageSize
integer<int32>
BlockchainId
integer<int64>

Response

200 - application/json

Token holders retrieved successfully.

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}
value
object

The result value returned when the operation is successful.

Example:
{
"items": [
{
"transactionHash": "0xabc123",
"amount": 150.5
}
],
"cursor": "next_page_token_xyz",
"page": 1,
"pageSize": 50
}