Allnodes Docs
  • Allnodes API
  • Endpoints
    • Validator
    • Staking
    • Full Node
  • 1INCH NETWORK (1INCH)
    • Staking
  • AAVE (AAVE)
    • Staking
  • AVALANCHE (AVAX)
    • Validator
  • Dash (DASH)
    • Masternode
  • ETHEREUM (ETH)
    • Validator
    • Staking
  • Firo (FIRO)
    • Masternode
  • KUSAMA (KSM)
    • Kusama Staking
  • NEAR Protocol (NEAR)
    • NEAR Protocol Staking
  • PAC PROTOCOL (PAC)
    • Masternode
  • POLKADOT (DOT)
    • Polkadot Staking
  • POLYGON (POL)
    • Staking
  • SHIBA INU (SHIB)
    • Shiba Inu Staking
  • SOLANA (SOL)
    • Solana Staking
  • Syscoin (SYS)
    • Masternode
  • THE GRAPH (GRT)
    • The Graph Staking
  • TRON (TRX)
    • Tron Staking
Powered by GitBook
On this page
  • Get all full nodes
  • Get a full node
  • Restart a full node

Was this helpful?

  1. Endpoints

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

Name
Type
Description

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

Name
Type
Description

id*

string

Full node you want to get info about. ID can be extracted from the “Get all full nodes” call

Headers

Name
Type
Description

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;
  }];
}
{
  "error": "NODE_NOT_FOUND" 
}

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

Name
Type
Description

id*

string

Full node you want to restart. ID can be extracted from the “Get all full nodes” call

Headers

Name
Type
Value

Authorization*

string

Bearer TOKEN

Response

{
  "error": "FORBIDDEN"
}
PreviousStakingNextStaking

Last updated 5 months ago

Was this helpful?