Cardano Reporting API Overview

Overview

The Blockdaemon Cardano Staking Reporting API helps with financial analysis and performance tracking by allowing you to retrieve both current and historical stake and reward data for pools and delegators.

Supported network: Mainnet


➡️ Stake & Rewards of a Pool

This endpoint retrieves the current or historical staking rewards and balances for a given pool. It includes information such as the total rewards, commission rates, and the time period for which the data is aggregated.

Endpoints

Sample Object

The example object returned by the Stake and Rewards of a Pool endpoint is shown below.

{
  "rewards": [
    {
      "address": "pool1af7dmzgcyp9kc5lyrtrtpsce58l6j5cjvc8wavkwmzlr53ym50v",
      "currency": "ADA",
      "metadata": {
        "commission": 0.02,
        "epoch": 520
      },
      "return": "298.529184",
      "startingBalance": "59601.936023",
      "timeAggregation": "epoch",
      "timeEnd": "2024-11-10T21:44:16Z",
      "timeStart": "2024-11-05T21:44:57Z"
    }
  ]
}

➡️ Stake & Rewards of Delegator

This endpoint retrieves the current or historical staking rewards and balances for a given delegator address.

Endpoints

Sample Object

The example object returned by the Stake and Rewards of a Delegator endpoint is shown below.

{
  "rewards": [
    {
      "address": "stake1ux9sn560pz6skkjuhfz8s3j0a4wf9flxt00kfgfg3ngnnxsvzfw5q",
      "currency": "ADA",
      "metadata": {
        "commission": 0,
        "epoch": 520
      },
      "return": "2.887300",
      "startingBalance": "7269.984627",
      "timeAggregation": "epoch",
      "timeEnd": "2024-11-10T21:44:16Z",
      "timeStart": "2024-11-05T21:44:57Z"
    }
  ]
}

👋 Need Help?

Contact us through email or our support page for any issues, bugs, or assistance you may need.