You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns network fee stats per ledger, hour, or day. The data shows the average, minimum, maximum, and total fees incurred for the given interval/ledger. _(New in [v2.2.0][])_
2217
+
2218
+
#### Request Format ####
2219
+
2220
+
<!--<div class='multicode'>-->
2221
+
2222
+
```
2223
+
GET /v2/network/fees
2224
+
```
2225
+
2226
+
<!--</div>-->
2227
+
2228
+
Optionally, you can include the following query parameters:
2229
+
2230
+
| Field | Value | Description |
2231
+
|--------|---------|-------------|
2232
+
| start | String - [Timestamp][]| Start time of query range. Defaults to the start of the most recent interval. |
2233
+
| end | String - [Timestamp][]| End time of query range. Defaults to the end of the most recent interval. |
2234
+
| interval | String | Aggregation interval - valid intervals are `ledger`, `hour`, or `day`. Defaults to `ledger`. |
2235
+
| descending | Boolean | Reverse chronological order |
2236
+
| limit | Integer | Maximum results per page. Defaults to 200. Cannot be more than 1000. |
2237
+
| marker | String |[Pagination](#pagination) key from previously returned response |
2238
+
| format | String | Format of returned results: `csv` or `json`. Defaults to `json`. |
0 commit comments