GET
/
accounts
/
{stake_addr}
/
delegations
Stake account delegation history
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/accounts/{stake_addr}/delegations \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "active_epoch_no": 397,
      "pool_id": "pool1jst7rrhucnp93hepezv5yqy6fx982xs2v0udwfc5ea6my3kfak7",
      "slot": 85518752
    },
    {
      "active_epoch_no": 462,
      "pool_id": "pool1ywpt43nttzjd7883wafg255mh0hmjypwe65ercw6p2sxg5lt7ez",
      "slot": 113498793
    }
  ],
  "last_updated": {
    "timestamp": "2024-01-12 14:06:24",
    "block_hash": "8295c809a899e67bbf6a1a90408eb5b9f5b563e64931e1db2fa51ac057a9716f",
    "block_slot": 113502093
  },
  "next_cursor": null
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

stake_addr
string
required

Bech32 encoded stake/reward address ('stake1...')

Query Parameters

count
integer
default:100

The max number of results per page

Required range: x >= 0
order
enum<string>
default:asc

The order in which the results are sorted (by epoch number)

Available options:
asc,
desc
cursor
string | null

Pagination cursor string, use the cursor included in a page of results to fetch the next page

Response

200
application/json

Stake account delegations

A paginated response. Pass in the next_cursor in a subsequent request as the cursor query parameter to fetch the next page of results.