> ## Documentation Index
> Fetch the complete documentation index at: https://whitelabelled-staking-docs.adamik.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Chain Validators

> Lists validators for a specified chain ID, including their operational status and commission rates. Useful for delegation operations on proof-of-stake blockchains.



## OpenAPI

````yaml openapi.json get /api/{chainId}/validators
openapi: 3.1.0
info:
  title: Adamik
  version: 0.1.0
  description: Adamik API reference
servers:
  - url: https://api.adamik.io
security:
  - ApiKeyAuth: []
paths:
  /api/{chainId}/validators:
    get:
      tags:
        - Chain
      summary: Get Chain Validators
      description: >-
        Lists validators for a specified chain ID, including their operational
        status and commission rates. Useful for delegation operations on
        proof-of-stake blockchains.
      parameters:
        - in: path
          name: chainId
          schema:
            type: string
            enum:
              - cosmoshub
              - cosmoshub-testnet
              - osmosis
              - osmosis-testnet
              - celestia
              - celestia-testnet
              - dydx
              - axelar
              - bitcoin-signet
              - injective
              - akash
              - band
              - dymension
              - kyve
              - neutron
              - terra2
              - stargaze
              - evmos
              - irisnet
              - juno
              - lum-network
              - omniflix
              - sei
              - medibloc
              - passage
              - quasar
              - seda
              - sommelier
              - shentu
              - stride
              - chihuahua
              - bitsong
              - persistence
              - comdex
              - fetch-ai
              - humans-ai
              - ki
              - likecoin
              - mars-hub
              - provenance
              - quicksilver
              - saga
              - ux-chain
              - kava
              - starknet
              - babylon
              - babylon-testnet
          required: true
        - in: query
          name: nextPage
          description: >-
            Token from the previous response of this endpoint. Provide it here
            to fetch the next page of results.
          schema:
            type: string
            description: >-
              Token from the previous response of this endpoint. Provide it here
              to fetch the next page of results.
      responses:
        '200':
          description: >-
            Returns a list of validators, their status, and commission details
            for the specified chain ID.
          content:
            application/json:
              schema:
                type: object
                properties:
                  chainId:
                    type: string
                    enum:
                      - cosmoshub
                      - cosmoshub-testnet
                      - osmosis
                      - osmosis-testnet
                      - celestia
                      - celestia-testnet
                      - dydx
                      - axelar
                      - bitcoin-signet
                      - injective
                      - akash
                      - band
                      - dymension
                      - kyve
                      - neutron
                      - terra2
                      - stargaze
                      - evmos
                      - irisnet
                      - juno
                      - lum-network
                      - omniflix
                      - sei
                      - medibloc
                      - passage
                      - quasar
                      - seda
                      - sommelier
                      - shentu
                      - stride
                      - chihuahua
                      - bitsong
                      - persistence
                      - comdex
                      - fetch-ai
                      - humans-ai
                      - ki
                      - likecoin
                      - mars-hub
                      - provenance
                      - quicksilver
                      - saga
                      - ux-chain
                      - kava
                      - starknet
                      - babylon
                      - babylon-testnet
                  validators:
                    type: array
                    items:
                      type: object
                      properties:
                        address:
                          type: string
                        name:
                          type: string
                        commission:
                          type: number
                        stakedAmount:
                          type: string
                      required:
                        - address
                        - name
                  pagination:
                    type: object
                    properties:
                      nextPage:
                        anyOf:
                          - type: string
                          - type: 'null'
                        description: >-
                          Use the token from the previous response to retrieve
                          the next page of results.
                    required:
                      - nextPage
                required:
                  - chainId
                  - validators
                  - pagination
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization

````