/xrpl/batchxrpl-getByIdsBatch lookup for trade events. Accepts up to 100 trade UUIDs per request and returns matching rows; unmatched ids are silently dropped.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `oracle` audience. Present as `Authorization: Bearer <token>`. |
| Field | Type | Description |
|---|---|---|
idsrequired | string[] | Trade UUIDs to resolve. Max 100 per request. Unmatched ids are silently omitted. |
{
"ids": [
"00000000-0000-0000-0000-000000000000"
]
}| Field | Type | Description |
|---|---|---|
items | object[] | Resolved trades. Unmatched ids are silently omitted. |
items[]. | string | |
items[]. | string | |
items[]. | string | |
items[]. | integer | |
items[]. | string | |
items[]. | string | |
items[]. | string | |
items[]. | string | |
items[]. | string | |
items[]. | string | |
items[]. | object | Trade pair the trade belongs to. |
items[]. | string | |
items[]. | string | |
items[]. | object | |
items[]. | string | |
items[]. | object | |
items[]. | string | |
items[]. | string |
{
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"tradePairId": "00000000-0000-0000-0000-000000000000",
"txHash": "string",
"ledgerIndex": 0,
"timestamp": "string",
"takerAddress": "string",
"baseAmount": "string",
"quoteAmount": "string",
"price": "string",
"createdAt": "string",
"tradePair": {
"id": "00000000-0000-0000-0000-000000000000",
"baseCurrency": "string",
"baseIssuer": "string",
"quoteCurrency": "string",
"quoteIssuer": "string",
"createdAt": "string",
"updatedAt": "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": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}