V1 API Reference

Kalvora Indexer API

Access indexed blockchain data from the Kalvora network. Transactions, blocks, tokens, wallets, governance, DEX, staking, and more.

Alpha documentationThese endpoint schemas are currently in Alpha and may contain inaccuracies or incomplete payload parameters. If you encounter any structural divergence while integrating, please report it to us so we can resolve it swiftly.
https://api.kalscan.io/v1
GET onlyJSON responses

Network

Global Kalvora network health and throughput statistics.

Network Stats

GET/v1/network?request=stats

Consolidated snapshot of network health: TPS, wallet count, native coin price, and daily transaction count.

Parameters

ParameterTypeRequiredDescription
requeststringRequiredMust be `stats`

Usage & Credits

This endpoint consumes 5 credits per request against your active API tier.

Notes

  • `zeraPrice` and `zeraChange24hr` carry the native coin's (`KAL111112`) USD rate and its 24-hour change, sourced from the rates oracle. The key names are historical and unchanged so existing clients keep working.
  • `totalWallets` is the approximate count of addresses with a non-zero balance, and `tps` is averaged over a 60-second window. If the native price lookup has no rate row the endpoint still returns the wallet, transaction, and TPS metrics with zeroed price fields.

Response

json
{
  "totalWallets": "integer",
  "dailyTransactions": "integer",
  "tps": "float",
  "zeraPrice": "float",
  "zeraChange24hr": "float"
}