/cex/exchanges/batchcex-getExchangesByIdsUp to 50 exchange ids per request. Unmatched ids are silently omitted.
| 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 |
|---|---|---|
exchangeIdsrequired | string[] | Exchange identifiers to resolve (max 50). Unmatched ids are silently omitted. |
{
"exchangeIds": [
"string"
]
}| Field | Type | Default | Description |
|---|---|---|---|
items | object[] | Resolved exchanges. Unmatched ids are silently omitted. | |
items[]. | string | Exchange identifier (e.g. `BINANCE`). | |
items[]. | boolean | false | Current connection status. |
items[]. | object | Last ticker received, Unix-seconds. | |
items[]. | object | Last error timestamp, Unix-seconds. | |
items[]. | object | Last error message, or `null`. | |
items[]. | number | Number of subscribed pairs. | |
items[]. | integer | Last status update, Unix-seconds. |
{
"items": [
{
"exchangeId": "string",
"isConnected": false,
"lastPriceAt": 1745798400,
"lastErrorAt": 1745798400,
"lastError": "string",
"pairCount": 0,
"updatedAt": 1745798400
}
]
}| 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": []
}