GET
/
pools
/
{pool_id}
/
delegators
/
{epoch_no}
Stake pool delegator history
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/pools/{pool_id}/delegators/{epoch_no} \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "stake_address": "stake1u83feq9ks8lc5gyre0c3fqr7e643604jgec9jp0tau220mgyj0a8n",
      "amount": "18272086108353"
    },
    {
      "stake_address": "stake1uxz2du6vka7emfclsgd2we8znyu2edy9exkxnd7n5xg63qga7u2jf",
      "amount": "4002283786898"
    }
  ],
  "last_updated": {
    "timestamp": "2023-12-18 10:13:03",
    "block_hash": "fb42be66ef3ca55b0538c9c69c4f9b55f16b286b45f1817f89e481feb8d5b7bf",
    "block_slot": 111328092
  },
  "next_cursor": "AAAAAAAAAAA"
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

pool_id
string
required

Pool ID in bech32 format

epoch_no
integer
required

Epoch number to fetch results for

Query Parameters

count
integer
default:100

The max number of results per page

Required range: x >= 0
cursor
string | null

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

Response

200
application/json

Array of information about delegators for a given pool in a specific epoch

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