CEX
Per-exchange latest prices for an asset/base pair
get
/cex/quote
operationId: cex-quote

Returns the latest 1m close (with volume + trade count) per exchange for the given (asset, base) pair, sourced from o_feed_ohlcv. Default sort is volume desc, then trade count desc. Optional exchange filter narrows to a single venue. Use /cex/price for the cross-exchange consensus VWAP instead of the per-venue breakdown.

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>`.
Query Parameters
NameTypeDefaultDescription
asset
required
string
Asset symbol (e.g. `XRP`).
base
string"USD"
exchange
string
Responses
200
application/json
Successful response
FieldTypeDescription
asset
string
Echoed asset symbol.
base
string
Echoed base.
items
object[]
Per-exchange latest prices for the pair, sorted by volume desc, then trade count desc.
items[].exchangeId
string
Exchange identifier.
items[].price
string
Latest 1m close (decimal string).
items[].volume
object
Volume in the latest 1m bucket. `null` when the venue's row was ticker-derived.
items[].tradeCount
object
Trade count in the latest 1m bucket. `null` when the venue does not publish one.
items[].asOf
integer
Bucket timestamp of the source 1m row, Unix-seconds.
Example
Json
{
  "asset": "XRP",
  "base": "USD",
  "items": [
    {
      "exchangeId": "BINANCE",
      "price": "1.4438",
      "volume": "128450.32",
      "tradeCount": 312,
      "asOf": 1745798400
    },
    {
      "exchangeId": "COINBASE",
      "price": "1.4435",
      "volume": "92103.55",
      "tradeCount": 198,
      "asOf": 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": []
}