/cex/quotecex-quoteReturns 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.
| 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 |
|---|---|---|---|
assetrequired | string | Asset symbol (e.g. `XRP`). | |
base | string | "USD" | |
exchange | string |
| Field | Type | Description |
|---|---|---|
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[]. | string | Exchange identifier. |
items[]. | string | Latest 1m close (decimal string). |
items[]. | object | Volume in the latest 1m bucket. `null` when the venue's row was ticker-derived. |
items[]. | object | Trade count in the latest 1m bucket. `null` when the venue does not publish one. |
items[]. | integer | Bucket timestamp of the source 1m row, Unix-seconds. |
{
"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
}
]
}| 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": []
}