/cex/exchangescex-listExchangesReturns the current health status of all configured exchange connections, including last ticker time, error state, and subscribed pair count. Filter by connection state and sort/direction.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `oracle` audience. Present as `Authorization: Bearer <token>`. |
| Name | Type | Default | Description |
|---|---|---|---|
isConnected | boolean | ||
sort | enum<string> | "exchangeId" | Available exchangeIdupdatedAtpairCountisConnected |
direction | enum<string> | "desc" | Available ascdesc |
| Field | Type | Default | Description |
|---|---|---|---|
items | object[] | Exchange connection statuses. | |
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": "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": []
}