Skip to main content

Stake pool history

GET /pools/:pool_id/history

History of stake pool parameters over epochs.

Request

Path Parameters

    pool_id string required

    Bech32 or hexadecimal pool ID.

    Example: pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy

Query Parameters

    count integer

    Possible values: >= 1 and <= 100

    Default value: 100

    The number of results displayed on one page.

    page integer

    Possible values: >= 1 and <= 21474836

    Default value: 1

    The page number for listing the results

    order string

    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.

Responses

Return the pool information content.


Schema
  • Array [
  • epoch integer required

    Epoch number

    blocks integer required

    Number of blocks created by pool

    active_stake string required

    Active (Snapshot of live stake 2 epochs ago) stake in Lovelaces

    active_size number required

    Pool size (percentage) of overall active stake at that epoch

    delegators_count integer required

    Number of delegators for epoch

    rewards string required

    Total rewards received before distribution to delegators

    fees string required

    Pool operator rewards

  • ]
Loading...