GET
/
pools
List registered stake pools
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/pools \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "pool_id_bech32": "pool100wj94uzf54vup2hdzk0afng4dhjaqggt7j434mtgm8v2gfvfgp",
      "ticker": "JFLD"
    },
    {
      "pool_id_bech32": "pool102s2nqtea2hf5q0s4amj0evysmfnhrn4apyyhd4azcmsclzm96m",
      "ticker": "YULI"
    },
    {
      "pool_id_bech32": "pool102vsulhfx8ua2j9fwl2u7gv57fhhutc3tp6juzaefgrn7ae35wm",
      "ticker": "BNP"
    },
    {
      "pool_id_bech32": "pool1030as3pp5684ghgf4kzcpv4p2jnmkmme7j363t95690zwxp7wa0",
      "ticker": "888"
    },
    {
      "pool_id_bech32": "pool1030vz0wxheg0dvarr8hmeavelpszmp52qucs68c7wc9uga6n6e4",
      "ticker": "ROMER"
    },
    {
      "pool_id_bech32": "pool10ysem79xjxd223plxqws0fheawd78znr3qs4h2h422gmxa40amu",
      "ticker": "LUCY"
    }
  ],
  "last_updated": {
    "timestamp": "2022-10-10 20:25:28",
    "block_hash": "73087e0231d665d82edcf7215b5381c26e406d111fe0075f987e59861dd6e451",
    "block_slot": 96404335
  },
  "next_cursor": "AAAAAAAAAAA"
}

Authorizations

api-key
string
header
required

Project API Key

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

List of all registered stake pools (ticker can be null)

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