Akash Network Validators API

The Validators API from Akash Network — 2 operation(s) for validators.

Operations 2

GET /v1/validators
GET /v1/validators/{address}

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/akash-validators-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

akash-validators-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AKASH - gRPC Gateway docs Addresses Validators API
  description: A REST interface for state queries
  version: 1.0.0
servers:
- url: https://console-api.akash.network/
tags:
- name: Validators
paths:
  /v1/validators:
    get:
      tags:
      - Validators
      security: []
      responses:
        '200':
          description: Returns validators
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    operatorAddress:
                      type: string
                    moniker:
                      type: string
                    votingPower:
                      type: number
                    commission:
                      type: number
                    identity:
                      type: string
                    votingPowerRatio:
                      type: number
                    rank:
                      type: number
                    keybaseAvatarUrl:
                      type:
                      - string
                      - 'null'
                  required:
                  - operatorAddress
                  - moniker
                  - votingPower
                  - commission
                  - identity
                  - votingPowerRatio
                  - rank
                  - keybaseAvatarUrl
  /v1/validators/{address}:
    get:
      tags:
      - Validators
      security: []
      parameters:
      - schema:
          type: string
          description: Validator Address
          example: akashvaloper14mt78hz73d9tdwpdvkd59ne9509kxw8yj7qy8f
        required: true
        name: address
        in: path
      responses:
        '200':
          description: Return a validator information
          content:
            application/json:
              schema:
                type: object
                properties:
                  operatorAddress:
                    type: string
                  address:
                    type:
                    - string
                    - 'null'
                  moniker:
                    type: string
                  keybaseUsername:
                    type:
                    - string
                    - 'null'
                  keybaseAvatarUrl:
                    type:
                    - string
                    - 'null'
                  votingPower:
                    type: number
                  commission:
                    type: number
                  maxCommission:
                    type: number
                  maxCommissionChange:
                    type: number
                  identity:
                    type: string
                  description:
                    type: string
                  website:
                    type: string
                  rank:
                    type: number
                required:
                - operatorAddress
                - address
                - moniker
                - keybaseUsername
                - keybaseAvatarUrl
                - votingPower
                - commission
                - maxCommission
                - maxCommissionChange
                - identity
                - description
                - website
                - rank
        '400':
          description: Invalid address
        '404':
          description: Validator not found
components:
  securitySchemes:
    kms:
      type: http
      scheme: basic