Network
Global Kalvora network health and throughput statistics.
Network Stats
GET
/v1/network?request=statsConsolidated snapshot of network health: TPS, wallet count, native coin price, and daily transaction count.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| request | string | Required | — | Must 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"
}