/cex/quote/batchcex-quoteBatchPOST batch variant of /cex/quote. Body: { pairs: [{asset, base?}], exchange? } (max 50 pairs). One entry per requested pair, each carrying the per-exchange array sorted by volume desc → trade count desc.
| 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 | Default | Description |
|---|---|---|---|
pairsrequired | object[] | Up to 50 (asset, base) pairs to fetch per-exchange prices for. | |
pairs[].required | string | Asset symbol (e.g. `XRP`). | |
pairs[]. | string | "USD" | Base / quote currency. Defaults to `USD`. |
exchange | string | Restrict every pair to a single exchange ID. Omit for all venues. |
{
"pairs": [
{
"asset": "XRP",
"base": "USD"
}
],
"exchange": "BINANCE"
}| Field | Type | Description |
|---|---|---|
items | object[] | One entry per requested pair, in request order. |
items[]. | string | |
items[]. | string | |
items[]. | object[] | |
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. |
{
"items": [
{
"asset": "string",
"base": "string",
"items": [
{
"exchangeId": "string",
"price": "string",
"volume": "string",
"tradeCount": 0,
"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": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}