Lido Finance Rewards API

The Rewards API from Lido Finance — 1 operation(s) for rewards.

Operations 1

GET / #

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-rewards-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-rewards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lido Ethereum APR for Eth and stEth Rewards API
  description: ''
  version: 0.18.0
  contact: {}
servers: []
tags:
- name: Rewards
paths:
  /:
    get:
      operationId: RewardsController_rewards
      parameters:
      - name: address
        required: true
        in: query
        schema:
          type: string
      - name: currency
        required: false
        in: query
        description: Fiat currency to use for calculations. USD by default.
        schema:
          enum:
          - usd
          - eur
          - gbp
          type: string
      - name: skip
        required: false
        in: query
        schema:
          type: number
      - name: limit
        required: false
        in: query
        description: Maximum number of records to return. Max value is 10000.
        schema:
          type: number
      - name: archiveRate
        required: false
        in: query
        description: Use an exchange rate close to transaction time in curency calculations. True by default.
        schema:
          type: boolean
      - name: onlyRewards
        required: false
        in: query
        description: Include only rewards without transfers or stakings. False by default.
        schema:
          type: boolean
      - name: sort
        required: false
        in: query
        description: Sort of transactions by blockTime. Desc by default.
        schema:
          enum:
          - asc
          - desc
          type: string
      responses:
        '200':
          description: Transfers, stakings, Lido rewards for the address.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Rewards'
        '400':
          description: Required address is not provided, invalid or other inputs are invalid.
        '500':
          description: Subgraph limits were hit or application ran into a critical error.
      tags:
      - Rewards
components:
  schemas:
    Rewards:
      type: object
      properties:
        events:
          example:
          - sender: '0x123'
            amount: '10000000000000'
            shares: '9601198468359'
            sharesBefore: '0'
            sharesAfter: '9601198468359'
            totalPooledEtherBefore: '1317010259140954469582432'
            totalPooledEtherAfter: '1317010259150954469582432'
            totalSharesBefore: '1264487688287792993319178'
            totalSharesAfter: '1264487688297394191787537'
            balanceAfter: '9999999999999'
            block: '13320401'
            blockTime: '1632915137'
            transactionHash: '0x123'
            transactionIndex: '104'
            logIndex: '180'
            type: staking
            balance: '9999999999999'
            change: '10000000000000'
            currencyChange: '0.02796295413407497'
            epochDays: '18899.480752314814814815'
            epochFullDays: '18899'
          - id: '0x123'
            totalPooledEtherBefore: '3987129361461045331041509'
            totalPooledEtherAfter: '3987566754071413331041509'
            totalSharesBefore: '3725701046344994365194933'
            totalSharesAfter: '3725741913672908436684643'
            block: '14710991'
            blockTime: '1651668004'
            logIndex: '26'
            type: reward
            reportShares: '17316925755135907'
            balance: '18533864938548509'
            rewards: '1829686745885'
            change: '1829686745885'
            currencyChange: '0.005091279242946043946637935645'
            epochDays: '19116.527824074074074074'
            epochFullDays: '19116'
            apr: '3.6021396525589111'
          type: array
          items:
            type: string
        totals:
          type: object
          example:
            ethRewards: '245552874602011'
            currencyRewards: '0.8708252194680570421607191945488'
        averageApr:
          type: string
          example: '3.547336805048441041'
        ethToStEthRatio:
          type: number
          example: 1.0009916423804406
        stETHCurrencyPrice:
          type: object
          example:
            eth: 0.99900934
            usd: 2841.22
        totalItems:
          type: number
          example: 100
      required:
      - events
      - totals
      - averageApr
      - ethToStEthRatio
      - stETHCurrencyPrice
      - totalItems