/network/validatorsnetwork-validatorsReturns the known XRPL validators, ordered by the most recent updatedAt. Set unlOnly=true to restrict the result to validators currently on the Unique Node List. For public-key lookups, filter client-side on the returned rows.
| 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 |
|---|---|---|---|
cursor | string | ||
limit | integer | 20 | |
unlOnly | boolean | false |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
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. |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"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
}
],
"nextCursor": "string"
}| 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": []
}