/oraclesoracle-listOraclesReturns the catalog of indexed XRPL price oracles, ordered by the last update time (freshest first). Each row is the oracle metadata — provider account, asset pairs, and update cadence; use /oracles/price-history for the actual samples.
| 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 |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | Oracle identifier derived from (owner_account + document_id). |
items[]. | string | XRPL address that owns the oracle. |
items[]. | integer | Oracle document id assigned by the owner. |
items[]. | object | |
items[]. | object | |
items[]. | object | |
items[]. | object | Timestamp of the most recent OracleSet observed, Unix-seconds. |
items[]. | object | |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"oracleId": "string",
"ownerAccount": "string",
"documentId": 0,
"provider": "string",
"assetClass": "string",
"uri": "string",
"lastUpdateTime": 1745798400,
"deletedLedger": 0
}
],
"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": []
}