/network/validators/pagenetwork-validatorsPagePage-mode variant of /network/validators for dashboards — 1-indexed page + pageSize, returns total and pageCount. Optional unlOnly filter restricts to UNL validators. Prefer /network/validators for infinite-scroll UIs.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`. |
| Name | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | |
pageSize | integer | 20 | |
unlOnly | boolean | false |
| Field | Type | Description |
|---|---|---|
items | object[] | Items on the current page. |
items[]. | string | Auto-generated UUID primary key. |
items[]. | string | Validator Ed25519 public key. |
items[]. | object | |
items[]. | object | |
items[]. | boolean | True when this validator is on the default UNL (trusted list). |
items[]. | object | |
items[]. | object | When the validator was last observed, Unix-seconds. |
items[]. | object | |
items[]. | integer | Record creation timestamp, Unix-seconds. |
items[]. | integer | Record update timestamp, Unix-seconds. |
page | integer | 1-indexed page number of the returned page. |
pageSize | integer | Items per page (echoed from the request). |
total | integer | Total number of items across all pages. |
pageCount | integer | Total number of pages at the requested pageSize. |
{
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"publicKey": "string",
"domain": "string",
"serverVersion": "string",
"unl": false,
"lastSeenLedger": 0,
"lastSeenTime": 1745798400,
"agreementScore": 0,
"createdAt": 1745798400,
"updatedAt": 1745798400
}
],
"page": 0,
"pageSize": 0,
"total": 0,
"pageCount": 0
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "BAD_REQUEST",
"message": "Invalid input data",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "UNAUTHORIZED",
"message": "Authorization not provided",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "FORBIDDEN",
"message": "Insufficient access",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "NOT_FOUND",
"message": "Not found",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}