/liquidity/pool-timeseriespool-timeseriesReturns a time-series of pool state for the given poolId. interval=raw returns every indexed snapshot at native granularity; interval=daily returns one bucketed row per day (last-observed reserves, LP supply, TVL). Use startTime/endTime to window the series; results are ordered newest-first.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`. |
| Name | Type | Default | Description |
|---|---|---|---|
cursor | string | ||
limit | integer | 20 | |
poolIdrequired | string | Liquidity pool identifier (UUID v4). | |
interval | enum<string> | "raw" | Available rawdaily |
startTime | integer | ||
endTime | integer |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | |
items[]. | integer | Start of the bucket, Unix-seconds. |
items[]. | object | Asset1 reserve at end of the bucket (decimal string in asset1 units). |
items[]. | object | Asset2 reserve at end of the bucket (decimal string in asset2 units). |
items[]. | integer | Number of source events that contributed to this bucket. |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"poolId": "3c4a3de8-4218-400c-8c55-87dc27206753",
"bucket": 1745712000,
"asset1Reserve": "128450.32",
"asset2Reserve": "512300.18",
"snapshotCount": 12
}
],
"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": []
}