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 for Algorand testnet

//
// 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.4160.nodely.dev';
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.4160.nodely.devhttps://mainnet-api.4160.nodely.dev
TestNethttps://testnet-idx.4160.nodely.devhttps://testnet-api.4160.nodely.dev
BetaNethttps://betanet-idx.4160.nodely.devhttps://betanet-api.4160.nodely.dev

Algorand Endpoints info

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

Voi network endpoints

VoiFull Indexer v2 APIFull Algod v2 API
Mainnethttps://mainnet-idx.voi.nodely.devhttps://mainnet-api.voi.nodely.dev
Testnethttps://testnet-idx.voi.nodely.devhttps://testnet-api.voi.nodely.dev

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