Skip to content
IPFS Gateway is now included in the Free tier! Check it out

QuickStart

To interact with an AVM chain just use one of the endpoints below, no keys required.

Example usage in SDKs

//
// npm install algosdk
//
import algosdk from 'algosdk';
// Define the Algorand node connection parameters
const algodToken = ''; // free service does not require tokens
const algodServer = 'https://testnet-api.algonode.cloud';
const algodPort = 443;
// Create an instance of the algod client
const algodClient = new algosdk.Algodv2(algodToken, algodServer, algodPort);
async function getNodeStatus() {
try {
const status = await algodClient.status().do();
console.log('Node status:', status);
} catch (err) {
console.error('Failed to get node status:', err);
}
}
// Call the function to print the node status
getNodeStatus();

Algorand endpoints

AlgorandFull Indexer v2 APIFull Algod v2 API
MainNethttps://mainnet-idx.algonode.cloudhttps://mainnet-api.algonode.cloud
TestNethttps://testnet-idx.algonode.cloudhttps://testnet-api.algonode.cloud
BetaNethttps://betanet-idx.algonode.cloudhttps://betanet-api.algonode.cloud
VoiFull Indexer v2 APIFull Algod v2 API
TestNethttps://voitest-idx.algorpc.pro/https://voitest-api.algorpc.pro/

Algorand Endpoints info

  • Cloudflare automatic balancing across 15 geo locations
  • Preflight acceleration (200+ locations)
  • OK for production (backend & frontend)

Voi network endpoints

VoiFull Indexer v2 APIFull Algod v2 API
TestNethttps://voitest-idx.algorpc.pro/https://voitest-api.algorpc.pro/

Voi Endpoints info

  • Cloudflare automatic balancing across 2 geo locations in USA
  • Preflight acceleration (200+ locations)
  • OK for production (backend & frontend)

Usage

Nodely hosts vanilla Algod API and indexer API - just drop the URL in your SDK and you are good to go.

Click on a Front-End URL to proceed to online Algod Swagger or Indexer Swagger documentation / API playground