Lido Finance NFT API

The NFT API from Lido Finance — 2 operation(s) for nft.

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-nft-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 email required.

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

OpenAPI Specification

lido-finance-nft-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Lido Ethereum APR for Eth and stEth NFT API
  description: ''
  version: 0.18.0
  contact: {}
servers: []
tags:
- name: NFT
paths:
  /v1/nft/{tokenId}:
    get:
      operationId: NFTController_nftMetaV1
      parameters:
      - name: tokenId
        required: true
        in: path
        description: NFT token id
        schema:
          minimum: 0
          type: number
      - name: requested
        required: true
        in: query
        description: Requested token amount
        schema:
          minimum: 0
          example: '25000000000000000000'
          type: string
      - name: created_at
        required: true
        in: query
        description: Created timestamp
        schema:
          minimum: 0
          example: 1658650005
          type: number
      - name: finalized
        required: false
        in: query
        description: Claimable token amount
        schema:
          minimum: 0
          example: '25000000000000000000'
          type: bigint
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NFTDto'
      tags:
      - NFT
  /v1/nft/{tokenId}/image:
    get:
      operationId: NFTController_nftImageV1
      parameters:
      - name: tokenId
        required: true
        in: path
        description: NFT token id
        schema:
          minimum: 0
          type: number
      - name: requested
        required: true
        in: query
        description: Requested token amount
        schema:
          minimum: 0
          example: '25000000000000000000'
          type: string
      - name: created_at
        required: true
        in: query
        description: Created timestamp
        schema:
          minimum: 0
          example: 1658650005
          type: number
      - name: finalized
        required: false
        in: query
        description: Claimable token amount
        schema:
          minimum: 0
          example: '25000000000000000000'
          type: bigint
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NFTDto'
      tags:
      - NFT
components:
  schemas:
    NFTDto:
      type: object
      properties:
        name:
          type: string
          example: My NFT
          description: NFT name
        description:
          type: string
          example: This is my first NFT
          description: NFT description
        image:
          type: string
          example: data:image/png;base64
          description: NFT image data
      required:
      - name
      - description
      - image