/oracles/batchoracle-getDetailsBatch oracle-detail lookup by oracleId. Body: { "oracleIds": ["…", "…"] } (max 100). Returns each matched oracle's detail row; unmatched oracleIds are silently omitted. Prefer this over N parallel calls to /oracles/{oracleId}.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`. |
| Field | Type | Description |
|---|---|---|
oracleIdsrequired | string[] | Oracle identifiers to resolve. Max 100 per request. Unmatched oracleIds are silently omitted. |
{
"oracleIds": [
"string"
]
}| Field | Type | Description |
|---|---|---|
items | object[] | Resolved oracles. One entry per matched oracleId; unmatched oracleIds are silently omitted. |
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 |
{
"items": [
{
"oracleId": "string",
"ownerAccount": "string",
"documentId": 0,
"provider": "string",
"assetClass": "string",
"uri": "string",
"lastUpdateTime": 1745798400,
"deletedLedger": 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": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}