One ASA in full: supply, decimals, URL, role addresses
API · /algorandasa-api
Algorand ASA Token Registry API
Algorand Standard Assets (ASAs) — Algorand's native token standard — live from the public Algonode indexer, no key, nothing cached. Every fungible and non-fungible token on Algorand, including Circle's USDC and Tether's USDt, is an ASA. The Algorand on-chain reader looks up a single asset, but there is no ASA registry in the marketplace; this opens it. Browse the ASA space paginated, each asset with its id, name, unit, total supply and decimals. Look up a single ASA in full — its name, unit, total supply (raw and decimal-adjusted), project URL and the on-chain role addresses that govern it: the manager (can reconfigure or destroy), the reserve, the freeze address and the clawback address. And search ASAs by name to find a token (with a reminder to verify the creator, since anyone can mint an ASA with any name). The token layer for Algorand wallets, DEXs, token explorers and analytics. Live from mainnet-idx.algonode.cloud.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 208 ms
- Server probes · 24h
- Subscribers
- 3,883
- active
- Total calls
- 24
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 7,600 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 7.6k calls/month
- 3 req/sec
- All endpoints
- No credit card
Starter
€8.60 /month
- 130,500 calls / month
- 9 requests / second
- Hard cap (429 above quota, no overage)
- 130.5k calls/month
- 9 req/sec
- Email support
Pro
€33.00 /month
- 820,000 calls / month
- 22 requests / second
- Hard cap (429 above quota, no overage)
- 820k calls/month
- 22 req/sec
- Priority support
Business
€94.50 /month
- 4,910,000 calls / month
- 55 requests / second
- Hard cap (429 above quota, no overage)
- 4.91M calls/month
- 55 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Algorand Applications API
Browse Algorand applications (smart contracts) live from the public AlgoNode indexer — no key. On Algorand a smart contract is an "application" with a numeric id, a creator, TEAL approval/clear programs and key-value global state. The Algorand on-chain reader resolves account, ASA-token and governance state, but it cannot browse the application universe, read an app's decoded global state, or list the apps a creator has deployed. This opens that. Browse the deployed applications with their id, creator and creation round; read one app in full — its decoded global state (the contract's on-chain key-value variables, keys and byte-values decoded from base64), its global/local state schema (how many uint and byte-slice slots it reserves) and its program presence; and list every application created by an address. The smart-contract layer for Algorand explorers, dApp dashboards, wallets and analytics. Distinct from the Algorand on-chain reader (account state), the ASA token reader and the governance reader. Live from the indexer; short cache only.
api.oanor.com/algorandapps-api
Algorand Governance API
The Algorand Foundation governance program, live from its official public API — no key, nothing cached. Algorand governance is a quarterly, on-chain-committed vote: ALGO holders commit stake, keep their voting commitments and earn rewards from a per-period pool. Where the on-chain reader covers ALGO balances and the app reader covers smart contracts, this surfaces the governance layer they miss. List every governance period with its total committed ALGO, governor count, reward pool and key dates. Read a single period in full — its committed ALGO (direct and LP), its reward-pool breakdown between DeFi and non-DeFi participants, its sign-up address and the voting sessions held in the period with their topics and dates. And rank a period's governors by committed ALGO, each with their eligibility, xGov status and how many voting sessions they voted in. Omit the period to default to the active (or most recent) one. The governance-and-voting layer for Algorand wallets, governor dashboards and analytics. Live from governance.algorand.foundation.
api.oanor.com/algorandgov-api
Algorand App API
Inspect Algorand stateful smart contracts (applications) live from the public Algonode indexer — no key. Where account- and asset-readers cover ALGO and ASAs, this covers the layer-1 application logic: look up any application by id for its creator, its decoded global state (the on-chain key/value store the contract actually keeps), the size of its approval and clear programs, its global and local state schemas and extra program pages; list every application an account has created; or browse the application space. The smart-contract layer for Algorand wallets, explorers, dApp builders and auditors who need to read exactly what a contract stores and who controls it. Reads straight from the indexer; short cache only.
api.oanor.com/algorandapp-api
Algorand (ALGO) On-Chain API
Live on-chain data from the Algorand blockchain (ALGO), a fast carbon-negative pure-proof-of-stake Layer 1, served straight from the public AlgoNode indexer and algod APIs — no key, nothing cached. The account endpoint returns any address's state: its ALGO balance, participation status (online/offline for staking), pending rewards, the Algorand Standard Assets (ASAs) it holds with their amounts, and how many apps it has created. The asset endpoint returns the on-chain registry entry for any ASA — its name, unit, decimals, total supply, creator and URL, so you can resolve USDC, USDt and thousands of tokens. The transactions endpoint returns the account's most recent transactions with the type, counterparty, amount, fee, round and time. The network endpoint returns the live chain state: the last round, the round time, and the total and online ALGO supply. Everything is read live from AlgoNode, nothing stored. This is the Algorand on-chain layer for any wallet, explorer, payments, DeFi or analytics app. Distinct from the XRP Ledger, Stellar, TRON, Aptos, EVM and Solana on-chain APIs and from price feeds — this is Algorand account state, ASA holdings, asset registry, transactions and ledger health. 4 endpoints, no key on our side.
api.oanor.com/algorand-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Algorand ASA Token Registry API?
What's the rate limit for Algorand ASA Token Registry API?
How much does Algorand ASA Token Registry API cost?
Can I cancel my subscription anytime?
Is Algorand ASA Token Registry API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/algorandasa-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/algorandasa-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/algorandasa-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/algorandasa-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.