/xrpl/pairs/batchxrpl-getPairsByIdsBatch lookup for trade pairs. Accepts up to 100 pair UUIDs per request; 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-pair UUIDs to resolve. Max 100 per request. Unmatched ids are silently omitted. |
{
"ids": [
"00000000-0000-0000-0000-000000000000"
]
}| Field | Type | Description |
|---|---|---|
items | object[] | Resolved markets. Unmatched ids are silently omitted. |
items[]. | string | |
items[]. | string | |
items[]. | object | |
items[]. | string | |
items[]. | object | |
items[]. | string | |
items[]. | string |
{
"items": [
{
"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": []
}