Algorand
This section provides information specific to the Algorand blockchain.
Open Toolbox Open API Management (RPC)
Chain.Love on Algorand is a set of modules that help you discover providers and (optionally) access Algorand APIs through an API gateway.
Recommended workflows
Discover providers (start here): open the Toolbox → browse categories (Indexing, Oracles, Wallets, etc.) → shortlist and compare offers.
Need an endpoint right now: open API Management → use the Algod/Indexer endpoints (details below).
Modules on Algorand
Toolbox (Discovery & comparison)
What it is: a chain-specific marketplace/registry of Web3 services.
Key features:
Discover: browse categories and filter offers
Compare: side-by-side comparison
AI search: search across the database (including cross-ecosystem queries)
Widget for docs: embed a compact Toolbox view into documentation
Contributing: improve the open-source database
Open:
https://algorand.chain.love/
API Management (RPC)
This module is for accessing APIs. If you’re evaluating providers or comparing options, start with the Toolbox section above.
Signing in with your wallet
Algorand additionally provide you with the option to connect via Pera wallet to sign in.
Sending requests
We host two REST API endpoints for Algorand:
Archival Node: This node provides access to the entire blockchain history, starting from genesis, as is. You can learn more about its API here: Algod API. Only GET endpoints are supported.
Indexer Node: This node provides REST API for searching Algorand blockchain. You can learn more about the indexer here: Algorand Indexer. You can find the REST API documentation here: Indexer API.
Both nodes are free to use for 10 requests per minute without authenthication and for 10M Credits with authentication.
Unlike other Chain.Love deployments, you have to use a custom header to provide your query key!
For Archival Node: "X-Algo-API-Token: QUERY_KEY"
For Indexer Node: "X-Indexer-API-Token: QUERY_KEY"
Last updated