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
Authorization*
string
Bearer TOKEN
[
{
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
id*
string
Full node you want to get info about. ID can be extracted from the “Get all full nodes” call
Headers
Authorization*
string
Bearer TOKEN
{
id: number;
fqdn: string;
name: string;
currencySymbol: string;
createdAt: string;
mode: 'fullnode' | 'sentry';
instances: [{
slug: string;
version: string;
blockHeight: number | null;
startedAt: string | null;
}];
}
Restart a full node
POST
https://www.allnodes.com/api/v1/fullnode/{id}/restart
This endpoint allows you to restart your full node.
This feature is available only for Advanced or Enterprise plan nodes.
Path Parameters
id*
string
Full node you want to restart. ID can be extracted from the “Get all full nodes” call
Headers
Authorization*
string
Bearer TOKEN
Response
Last updated
Was this helpful?