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 parametersconst algodToken = ''; // free service does not require tokensconst algodServer = 'https://testnet-api.4160.nodely.dev';const algodPort = 443;
// Create an instance of the algod clientconst 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 statusgetNodeStatus();
## pip install py-algorand-sdk#from algosdk.v2client import algod
# Replace these values with your node's address# free service does not require tokensalgod_address = "https://testnet-api.4160.nodely.dev"algod_token = ""
# Initialize the algod clientalgod_client = algod.AlgodClient(algod_token, algod_address)
# Get the node statustry: status = algod_client.status() print("Node status:", status)except Exception as e: print(f"Failed to get node status: {e}")
Algorand endpoints
Algorand | Full Indexer v2 API | Full Algod v2 API |
---|---|---|
MainNet | https://mainnet-idx.4160.nodely.dev | https://mainnet-api.4160.nodely.dev |
TestNet | https://testnet-idx.4160.nodely.dev | https://testnet-api.4160.nodely.dev |
BetaNet | https://betanet-idx.4160.nodely.dev | https://betanet-api.4160.nodely.dev |
FNet | https://fnet-idx.4160.nodely.dev | https://fnet-api.4160.nodely.dev |
more | networks @ AVM Endpoints matrix | <--- |
Algorand Mainnet endpoints info
- Cloudflare automatic balancing across 21+ geo locations
- Preflight acceleration (200+ locations)
- OK for production (backend & frontend)
Voi network endpoints
Voi | Full Indexer v2 API | Full Algod v2 API |
---|---|---|
Mainnet | https://mainnet-idx.voi.nodely.dev | https://mainnet-api.voi.nodely.dev |
Testnet | https://testnet-idx.voi.nodely.dev | https://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