Lido Finance Request Time API

The Request Time API from Lido Finance — 3 operation(s) for request time.

Operations 3

GET /v1/request-time #
GET /v2/request-time #
GET /v2/request-time/calculate #

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-request-time-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-request-time-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lido Ethereum APR for Eth and stEth Request Time API
  description: ''
  version: 0.18.0
  contact: {}
servers: []
tags:
- name: Request Time
paths:
  /v1/request-time:
    get:
      operationId: RequestTimeController_requestTimeV1
      parameters:
      - name: WQ-Request-Source
        in: header
        description: Sources of withdrawal time requests
        required: false
        schema:
          enum:
          - widget
          - sdk
          - unknown
          type: string
      - name: amount
        required: false
        in: query
        description: stETH amount to withdrawal
        schema:
          minimum: 0
          example: '32'
          type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RequestTimeDto'
      tags:
      - Request Time
  /v2/request-time:
    get:
      operationId: RequestTimeController_requestsTime
      parameters:
      - name: WQ-Request-Source
        in: header
        description: Sources of withdrawal time requests
        required: false
        schema:
          enum:
          - widget
          - sdk
          - unknown
          type: string
      - name: ids
        required: true
        in: query
        description: Array of id withdrawal requests
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RequestTimeByRequestIdDto'
        '400':
          description: ids should be array of string id withdrawal requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseType'
      tags:
      - Request Time
  /v2/request-time/calculate:
    get:
      operationId: RequestTimeController_calculateTime
      parameters:
      - name: WQ-Request-Source
        in: header
        description: Sources of withdrawal time requests
        required: false
        schema:
          enum:
          - widget
          - sdk
          - unknown
          type: string
      - name: amount
        required: false
        in: query
        description: stETH amount to withdrawal
        schema:
          minimum: 0
          example: '32'
          type: number
      responses:
        '200':
          description: Calculates time to withdrawal amount of stEth
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RequestTimeV2Dto'
        '400':
          description: Amount should be valid eth value or amount should not be
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseType'
      tags:
      - Request Time
components:
  schemas:
    ErrorResponseType:
      type: object
      properties:
        statusCode:
          type: number
          example: 400
          description: Http status code
        message:
          description: Array of validation error messages
          type: array
          items:
            type: string
        error:
          type: string
          description: Error text
          example: Bad Request
      required:
      - statusCode
      - message
      - error
    RequestInfoDto:
      type: object
      properties:
        finalizationIn:
          type: number
          example: 5
          description: Possible waiting ms
        finalizationAt:
          type: string
          example: '2023-10-04T15:14:24.202Z'
          description: Possible finalization At
        type:
          type: string
          example: buffer
          description: Case of calculation
          enum:
          - buffer
          - bunker
          - vaultsBalance
          - rewardsOnly
          - validatorBalances
          - requestTimestampMargin
          - exitValidators
      required:
      - finalizationIn
      - finalizationAt
      - type
    RequestTimeDto:
      type: object
      properties:
        days:
          type: number
          example: 5
          description: Maximum waiting days
        stethLastUpdate:
          type: number
          example: 0
          description: Queue ETH last update timestamp
        validatorsLastUpdate:
          type: number
          example: 0
          description: Validators last update timestamp
        requests:
          type: number
          example: 10
          description: Queue requests count
        steth:
          type: string
          example: 0
          description: Queue steth amount
        status:
          type: string
          description: Status of request calculation
          enum:
          - initializing
          - calculating
          - finalized
          - calculated
      required:
      - days
      - stethLastUpdate
      - validatorsLastUpdate
      - requests
      - steth
      - status
    RequestTimeV2Dto:
      type: object
      properties:
        requestInfo:
          $ref: '#/components/schemas/RequestInfoDto'
        status:
          type: string
          description: Status of request calculation
          enum:
          - initializing
          - calculating
          - finalized
          - calculated
        nextCalculationAt:
          type: string
          description: Next calculation time at
          example: '2023-10-03T11:14:24.202Z'
      required:
      - requestInfo
      - status
      - nextCalculationAt
    RequestTimeByRequestIdDto:
      type: object
      properties:
        requestInfo:
          $ref: '#/components/schemas/RequestByIdInfoDto'
        status:
          type: string
          description: Status of request calculation
          enum:
          - initializing
          - calculating
          - finalized
          - calculated
        nextCalculationAt:
          type: string
          description: Next calculation time at
          example: '2023-10-03T11:14:24.202Z'
      required:
      - requestInfo
      - status
      - nextCalculationAt
    RequestByIdInfoDto:
      type: object
      properties:
        finalizationIn:
          type: number
          example: 5
          description: Possible waiting ms
        finalizationAt:
          type: string
          example: '2023-10-04T15:14:24.202Z'
          description: Possible finalization At
        requestId:
          type: string
          example: 5
          description: Request Id
        requestedAt:
          type: string
          example: '2023-10-03T15:14:24.202Z'
          description: Withdrawal requested at
        type:
          type: string
          example: buffer
          description: Case of calculation
          enum:
          - buffer
          - bunker
          - vaultsBalance
          - rewardsOnly
          - validatorBalances
          - requestTimestampMargin
          - exitValidators
      required:
      - finalizationIn
      - finalizationAt
      - requestId
      - requestedAt
      - type