# Akash Network On-Chain API
> Live on-chain data for Akash Network (the decentralized cloud-compute marketplace L1, chain akashnet-2) with no key: staking economics (bonded vs unbonded AKT, bonded ratio, staking parameters), the active validator set (moniker, voting power, commission, status), the total AKT supply, monetary inflation (annual rate, annual provisions, mint parameters), the latest governance proposals, and the latest block.

## Authentication
All requests require your oanor API key in the `x-oanor-key` header. Get one at https://www.oanor.com/developer/keys.

```bash
curl -H "x-oanor-key: oanor_live_…" "https://api.oanor.com/akash-api/..."
```

## Pricing
- **Free** (Free) — 10,500 calls/Mo, 2 req/s
- **Basic** ($26/Mo) — 236,000 calls/Mo, 10 req/s
- **Pro** ($73/Mo) — 1,290,000 calls/Mo, 20 req/s
- **Scale** ($149/Mo) — 7,050,000 calls/Mo, 50 req/s

## Endpoints

### Staking

#### `GET /v1/staking` — Staking economics & parameters

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/akash-api/v1/staking"
```

**Response:**
```json
{
    "data": {
        "note": "The Akash staking economics — bonded vs unbonded AKT, the bonded ratio, and the chain's staking parameters (unbonding period, max validators, minimum commission). No parameters.",
        "params": {
            "bond_denom": "uakt",
            "max_validators": 100,
            "min_commission_rate": 0.05,
            "unbonding_time_seconds": 1814400
        },
        "source": "Akash Network (akashnet-2) LCD",
        "bonded_akt": 98245855.88,
        "not_bonded_akt": 12611361.05,
        "bonded_ratio_percent": 88.62
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:37.746Z",
        "request_id": "a9af4657-d100-4c7b-b57c-fa7dc6b57b08"
    },
    "status": "ok",
    "message": "Staking retrieved successfully",
    "success": true
}
```

#### `GET /v1/validators` — Active validator set ranked by voting power

**Parameters:**
- `limit` (query, optional, string) — Results 1-100 Example: `25`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/akash-api/v1/validators?limit=25"
```

**Response:**
```json
{
    "data": {
        "note": "The active Akash validator set, ranked by voting power — each validator's moniker, website, voting power (in AKT), commission rate and status. Pass limit (1-100, default 25).",
        "count": 25,
        "source": "Akash Network (akashnet-2) LCD",
        "validators": [
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Cosmostation",
                "website": "https://www.cosmostation.io",
                "commission_rate": 0.05,
                "operator_address": "akashvaloper18tmu0lrfsdvke8e3a3jsd7fq2rs29krfkkw8gz",
                "voting_power_akt": 11872596.74,
                "max_commission_rate": 0.2
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "kava_labs",
                "website": null,
                "commission_rate": 0.05,
                "operator_address": "akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs",
                "voting_power_akt": 8317346.4,
                "max_commission_rate": 1
            },
            {
                "jailed": false,
                "status": "BOND_STATUS_BONDED",
                "moniker": "Forbole",
                "website": "https://forbole.com",
                "commission_rate": 0.05,
                "operator_address": "akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073",
                "voting_power_akt": 69
…(truncated, see openapi.json for full schema)
```

### Governance

#### `GET /v1/governance` — Latest governance proposals

**Parameters:**
- `limit` (query, optional, string) — Results 1-50 Example: `10`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/akash-api/v1/governance?limit=10"
```

**Response:**
```json
{
    "data": {
        "note": "The latest Akash on-chain governance proposals (most recent first) — each proposal's id, title, status and voting window. Pass limit (1-50, default 10).",
        "count": 10,
        "source": "Akash Network (akashnet-2) LCD",
        "proposals": [
            {
                "title": "Akash Mainnet 18 Upgrade",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "328",
                "submit_time": "2026-06-03T15:59:14.821274939Z",
                "voting_end_time": "2026-06-10T16:36:25.314757532Z"
            },
            {
                "title": "Recover Akash IBC Client 07-tendermint-118 for UX Chain (Umee)",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "327",
                "submit_time": "2026-06-03T14:08:25.306401101Z",
                "voting_end_time": "2026-06-10T14:08:25.306401101Z"
            },
            {
                "title": "Recover expired UX Chain IBC client",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "326",
                "submit_time": "2026-05-29T12:22:20.151742564Z",
                "voting_end_time": "2026-06-05T12:22:20.151742564Z"
            },
            {
                "title": "AEP Support Services – Q4 2025 / Q1 2026 Funding Proposal Part II",
                "status": "PROPOSAL_STATUS_PASSED",
                "proposal_id": "325",
                "submit_time": "2026-05-11T20:43:5
…(truncated, see openapi.json for full schema)
```

### Supply

#### `GET /v1/supply` — Total AKT supply

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/akash-api/v1/supply"
```

**Response:**
```json
{
    "data": {
        "note": "The total supply of AKT (the native token of Akash Network), in both AKT and the uakt micro-denomination. No parameters.",
        "denom": "AKT",
        "source": "Akash Network (akashnet-2) LCD",
        "micro_denom": "uakt",
        "total_supply_akt": 294791241.54,
        "total_supply_uakt": "294791241539946"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:38.184Z",
        "request_id": "35a5a81f-81f4-482a-89f4-74a65508a5d3"
    },
    "status": "ok",
    "message": "Supply retrieved successfully",
    "success": true
}
```

### Economics

#### `GET /v1/inflation` — Monetary inflation & mint parameters

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/akash-api/v1/inflation"
```

**Response:**
```json
{
    "data": {
        "note": "The Akash monetary inflation — the current annual inflation rate, the AKT minted per year (annual provisions), and the mint parameters (blocks per year, target bonded ratio, inflation band). No parameters.",
        "params": {
            "mint_denom": "uakt",
            "blocks_per_year": 5256000,
            "goal_bonded_percent": 67,
            "inflation_max_percent": 4,
            "inflation_min_percent": 3
        },
        "source": "Akash Network (akashnet-2) LCD",
        "annual_provisions_akt": 11791649.57,
        "annual_inflation_percent": 4
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:38.316Z",
        "request_id": "adcc702d-68cc-4828-929a-6ab58bf4b876"
    },
    "status": "ok",
    "message": "Inflation retrieved successfully",
    "success": true
}
```

### Chain

#### `GET /v1/block` — Latest block

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/akash-api/v1/block"
```

**Response:**
```json
{
    "data": {
        "note": "The latest finalized Akash block — height, timestamp, chain id, proposer and transaction count. No parameters.",
        "time": "2026-06-15T02:10:31.855362230Z",
        "round": 0,
        "height": 27281582,
        "source": "Akash Network (akashnet-2) LCD",
        "num_txs": 8,
        "chain_id": "akashnet-2",
        "proposer_address": "MYkGBGfC4bQyCJ3bBg9Q9vRUGPA="
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:38.451Z",
        "request_id": "9dd8cbe5-cbc2-48fd-b91a-ca6ea81080d2"
    },
    "status": "ok",
    "message": "Block retrieved successfully",
    "success": true
}
```

### Meta

#### `GET /v1/meta` — Service metadata & endpoint catalog

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/akash-api/v1/meta"
```

**Response:**
```json
{
    "data": {
        "sample": {
            "latest_height": 27281582
        },
        "source": "Akash public Cosmos REST / LCD nodes (akash-api.polkachu.com and mirrors), keyless",
        "service": "akash-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/block": "Latest block.",
            "GET /v1/supply": "Total AKT supply.",
            "GET /v1/staking": "Staking economics & parameters.",
            "GET /v1/inflation": "Monetary inflation & mint parameters.",
            "GET /v1/governance": "Latest governance proposals (limit).",
            "GET /v1/validators": "Active validator set (limit)."
        },
        "description": "Live on-chain data for Akash Network (the decentralized cloud-compute marketplace L1, chain akashnet-2) with no key: staking economics (bonded vs unbonded AKT, bonded ratio, staking parameters), the active validator set (moniker, voting power, commission, status), the total AKT supply, monetary inflation (annual rate, annual provisions, mint parameters), the latest governance proposals, and the latest block. The Akash-on-chain / staking / inflation / governance layer for explorers, staking dashboards and research. Distinct from other chain readers — the Akash (akashnet-2) network. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:38.595Z",
        "request_id": "0d438ab4-e624-46df-a001-28dd631b6a6c"
    },
    "status"
…(truncated, see openapi.json for full schema)
```


---
Marketplace page: https://www.oanor.com/api/akash-api
OpenAPI spec: https://www.oanor.com/api/akash-api/openapi.json
