Developers
AKARSA API
Free, public endpoints powering this site. JSON responses, no auth required for reads. Need dedicated, higher-rate or custom endpoints? Talk to us.
GET
/api/networksList all supported Proof-of-Stake networks with ticker, APR and category.
?category=Cosmos&sort=apr&order=desc
{ "count": 30, "networks": [ { "slug": "ethereum", "name": "Ethereum", "ticker": "ETH", "apr": 2.6, "category": "Layer 1" } ] }GET
/api/networks/[slug]Details for a single network, including validator metadata and uptime.
e.g. /api/networks/ethereum
{ "slug": "ethereum", "name": "Ethereum", "apr": 2.6, "uptime": 99.98, "commission": "5%" }GET
/api/statsAggregate platform statistics: assets under delegation, networks, delegators, uptime.
—
{ "assetsUnderDelegation": 1200000000, "networksSupported": 32, "stakers": 42000, "uptime": 99.98, "rating": "AAA" }POST
/api/newsletterSubscribe an email to the AKARSA newsletter.
Body: { "email": "you@example.com" }
{ "success": true, "message": "Subscribed successfully." }POST
/api/contactSubmit a contact / sales inquiry.
Body: { "name", "email", "message", "company?", "topic?" }
{ "success": true, "message": "Message received. Our team will reply within one business day." }