Full Node

Get all full nodes

GET https://www.allnodes.com/api/v1/fullnode

This endpoint allows to get list of all your hosted full nodes and sentry nodes.

Headers

[
  {
    id: number;
    fqdn: string;
    name: string;
    currencySymbol: string;
    createdAt: string;
    mode: 'fullnode' | 'sentry';
    instances: [{
      slug: string;
      version: string;
      blockHeight: number | null;
      startedAt: string | null;
    }];
  }
]

Get a full node

GET https://www.allnodes.com/api/v1/fullnode/{id}

This endpoint allows to get info about specific full node or sentry node on your account.

Path Parameters

Headers

{
  id: number;
  fqdn: string;
  name: string;
  currencySymbol: string;
  createdAt: string;
  mode: 'fullnode' | 'sentry';
  instances: [{
    slug: string;
    version: string;
    blockHeight: number | null;
    startedAt: string | null;
  }];
}

Last updated