GET
/
pools
/
{pool_id}
/
relays
Stake pool relays
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/pools/{pool_id}/relays \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "pool_id_bech32": "pool10qrz84cvz95zg8saf43ruhs5ulczuuqm2d3jn6d8xkkkzgzfje7",
      "relays": [
        {
          "dns": "relay1.adappt.online",
          "srv": null,
          "ipv4": null,
          "ipv6": null,
          "port": 3001
        },
        {
          "dns": "relay2.adappt.online",
          "srv": null,
          "ipv4": null,
          "ipv6": null,
          "port": 3001
        }
      ]
    }
  ],
  "last_updated": {
    "timestamp": "2022-10-10 20:25:28",
    "block_hash": "44d7fa145be596adba7e1a122cee3204bc1177c21598a3ef199925a13c042082",
    "block_slot": 96405276
  }
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

pool_id
string
required

Pool ID in bech32 format

Response

200
application/json

List of relays declared on-chain by the specified pool

Timestamped response. Returns the endpoint response data along with the chain-tip of the indexer, which details at which point in the chain's history the data was correct as-of.