/cex/tickerscex-recentTickersReturns the most recent raw ticker snapshots from centralized exchanges (last/bid/ask/24h-volume). Optional filters narrow to a specific asset or exchange. Cursor pagination plus 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 |
|---|---|---|---|
cursor | string | ||
limit | integer | 20 | |
asset | string | ||
exchangeId | string | ||
sort | enum<string> | "timestamp" | Available timestampassetexchangeId |
direction | enum<string> | "desc" | Available ascdesc |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | Ticker record ID (UUID v4). |
items[]. | integer | Ticker timestamp, Unix-seconds. |
items[]. | string | Exchange identifier. |
items[]. | string | Asset symbol. |
items[]. | string | Base currency. |
items[]. | string | Last trade price (decimal string). |
items[]. | object | Best bid price (decimal string), or `null` if not published. |
items[]. | object | Best ask price (decimal string), or `null` if not published. |
items[]. | object | Rolling 24h volume (decimal string), or `null` if not published. |
items[]. | string | Data source (`ws` for live ticker stream, `rest` for REST snapshot). |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"timestamp": 1745798400,
"exchangeId": "string",
"asset": "string",
"base": "string",
"last": "string",
"bid": "string",
"ask": "string",
"volume24h": "string",
"source": "string"
}
],
"nextCursor": "string"
}| 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": []
}