Stake pool history
GET /pools/:pool_id/history
History of stake pool parameters over epochs.
Request
Path Parameters
Bech32 or hexadecimal pool ID.
Query Parameters
Possible values: >= 1
and <= 100
Default value: 100
The number of results displayed on one page.
Possible values: >= 1
and <= 21474836
Default value: 1
The page number for listing the results
Possible values: [asc
, desc
]
Default value: asc
The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last.
- 200
- 400
- 403
- 404
- 418
- 429
- 500
Return the pool information content.
Schema
- Array [
- ]
Epoch number
Number of blocks created by pool
Active (Snapshot of live stake 2 epochs ago) stake in Lovelaces
Pool size (percentage) of overall active stake at that epoch
Number of delegators for epoch
Total rewards received before distribution to delegators
Pool operator rewards
[
{
"epoch": 233,
"blocks": 22,
"active_stake": "20485965693569",
"active_size": 1.2345,
"delegators_count": 115,
"rewards": "206936253674159",
"fees": "1290968354"
}
]
Bad request
Schema
{
"status_code": 400,
"error": "Bad Request",
"message": "Backend did not understand your request."
}
Authentication secret is missing or invalid
Schema
{
"status_code": 403,
"error": "Forbidden",
"message": "Invalid project token."
}
Component not found
Schema
{
"status_code": 404,
"error": "Not Found",
"message": "The requested component has not been found."
}
IP has been auto-banned for extensive sending of requests after usage limit has been reached
Schema
{
"status_code": 418,
"error": "Requested Banned",
"message": "IP has been auto-banned for flooding."
}
Usage limit reached
Schema
{
"status_code": 429,
"error": "Project Over Limit",
"message": "Usage is over limit."
}
Internal Server Error
Schema
{
"status_code": 500,
"error": "Internal Server Error",
"message": "An unexpected response was received from the backend."
}