Get cumulative histogram with precomputed stats
GET
/v1/stats/series/{name}/{timeframe}/cumulativeLast modified: 3 months ago
Get cumulative histogram with precomputed stats by series name and timeframe
Request
Path Params
name
enum<string>
required
Series name
Allowed values:
blobs_sizeblobs_countfeetx_countgas_usedgas_limitbytes_in_block
Example:
tx_count
timeframe
enum<string>
required
Timeframe
Allowed values:
dayweekmonthyear
Example:
day
Query Params
from
integer
optional
Time from in unix timestamp
Example:
1727523000
to
integer
optional
Time to in unix timestamp
Example:
1727524000
Request samples
Responses
Success(200)
Bad Request(400)
Internal Server Error(500)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
array of:
time
string
required
value
string
required
Example
[
{
"time": "2024-07-03T00:00:00Z",
"value": "18836567"
},
{
"time": "2024-07-04T00:00:00Z",
"value": "18880430"
},
{
"time": "2024-07-05T00:00:00Z",
"value": "18921007"
},
{
"time": "2024-07-06T00:00:00Z",
"value": "18961195"
},
{
"time": "2024-07-07T00:00:00Z",
"value": "18995283"
}
]
Last modified: 3 months ago