Sandbox version
For experimental use only. Proceed with caution.
CEX
List pairs the exchange is currently publishing tickers for
get
/cex/exchanges/{exchangeId}/pairs
operationId: cex-getExchangePairs

Diagnostic endpoint. Returns the (asset, base) pairs that have produced at least one ticker row for the given exchange in the lookback window (default 24h). Operators use this to confirm that WS subscriptions actually landed — a venue can show as isConnected: true while a specific pair's channel was silently rejected by the venue (Bitstamp returns bts:subscription_failed for unlisted symbols, for example). Sorted by row count desc → last-seen desc.

Unlock protected endpoints

Enter your Bearer token once to enable every protected route in this API reference.

HTTP bearer

Saved for this browser tab only. The credential is never sent until you test an endpoint.

Authorizations
NameLocationDetails
BearerAuthAuthorization header · bearerJWT issued by the Honeycluster auth service for the `oracle` audience. Present as `Authorization: Bearer <token>`.
Path Parameters
NameTypeDefaultDescription
exchangeId
required
string
Exchange identifier (e.g. `BITSTAMP`).
Query Parameters
NameTypeDefaultDescription
windowSec
integer86400
Responses
200
application/json
Successful response
FieldTypeDescription
exchangeId
string
Echoed exchange identifier.
windowSec
number
Echoed lookback window.
pairs
object[]
Pairs that produced at least one ticker in the window, sorted by row count desc → last-seen desc.
pairs[].asset
string
Asset symbol.
pairs[].base
string
Base / quote currency.
pairs[].rowsInWindow
number
Number of ticker rows landed in the lookback window.
pairs[].lastSeenAt
integer
Most recent ticker timestamp, Unix-seconds.
Example
Json
{
  "exchangeId": "string",
  "windowSec": 0,
  "pairs": [
    {
      "asset": "string",
      "base": "string",
      "rowsInWindow": 0,
      "lastSeenAt": 1745798400
    }
  ]
}
400
application/json
Invalid input data
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
401
application/json
Authorization not provided
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "UNAUTHORIZED",
  "message": "Authorization not provided",
  "issues": []
}
403
application/json
Insufficient access
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "FORBIDDEN",
  "message": "Insufficient access",
  "issues": []
}
404
application/json
Not found
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "NOT_FOUND",
  "message": "Not found",
  "issues": []
}
500
application/json
Internal server error
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}