Lido Finance Validators API

The Validators API from Lido Finance — 1 operation(s) for validators.

Operations 1

GET /v1/validators-info #

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/lido-finance-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

lido-finance-validators-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lido Ethereum APR for Eth and stEth Validators API
  description: ''
  version: 0.18.0
  contact: {}
servers: []
tags:
- name: Validators
paths:
  /v1/validators-info:
    get:
      operationId: ValidatorsController_validatorsV1
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidatorsDto'
      tags:
      - Validators
components:
  schemas:
    ValidatorsDto:
      type: object
      properties:
        lastUpdatedAt:
          type: number
          example: 1658650005
          description: ms time when data was last updated at
        maxExitEpoch:
          type: number
          example: 1724856617
          description: max exit epoch over all CL network
        frameBalances:
          type: object
          example: '{}'
          description: sum of balances Lido validators with withdrawable_epoch by frame
        totalValidators:
          type: number
          example: 100000
          description: total number of validators in network
        currentFrame:
          type: number
          example: 100000
          description: current frame
      required:
      - lastUpdatedAt
      - maxExitEpoch
      - frameBalances
      - totalValidators
      - currentFrame