/network/fee-historynetwork-feeHistoryReturns fee statistics aggregated into hourly buckets — average base fee, average median fee, and min/max observed fees per bucket. 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 |
|---|---|---|---|
startTime | integer | ||
endTime | integer | ||
limit | integer | 500 |
| Field | Type | Description |
|---|---|---|
items | object[] | |
items[]. | integer | Start of the aggregation bucket, Unix-seconds. |
items[]. | string | Average base fee in drops. |
items[]. | string | Average median transaction fee in drops. |
items[]. | string | Maximum fee observed in the bucket (drops). |
items[]. | string | Minimum fee observed in the bucket (drops). |
items[]. | number | Number of ledgers sampled in the bucket. |
{
"items": [
{
"bucket": 1745712000,
"avgBaseFee": "10",
"avgMedianFee": "12",
"maxFee": "8000",
"minFee": "10",
"sampleCount": 360
},
{
"bucket": 1745715600,
"avgBaseFee": "10",
"avgMedianFee": "11",
"maxFee": "5000",
"minFee": "10",
"sampleCount": 360
}
]
}| 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": []
}