LI.FI Earn Protocols API

The Earn Protocols API from LI.FI — 1 operation(s) for earn protocols.

Operations 1

GET /v1/protocols List supported protocols #

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/lifi-earn-protocols-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

lifi-earn-protocols-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LI.FI Earn Earn Protocols API
  description: Enterprise DeFi yield discovery and tracking API
  version: 0.1.0
  contact: {}
servers:
- url: https://earn.li.fi
  description: Production
security:
- x-lifi-api-key: []
tags:
- name: Earn Protocols
paths:
  /v1/protocols:
    get:
      operationId: ProtocolsController_getProtocols_v1
      summary: List supported protocols
      description: Returns the list of protocols that have at least one vault available. Derived from current vault data.
      tags:
      - Earn Protocols
      parameters: []
      responses:
        '200':
          description: Supported protocols
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  additionalProperties: false
                  required:
                  - name
                  - url
                  properties:
                    name:
                      type: string
                      description: Protocol display name.
                      example: Morpho
                    logoUri:
                      type: string
                      description: URL to the protocol's logo image.
                      example: https://example.com/morpho-logo.png
                    url:
                      type: string
                      description: Protocol website URL.
                      example: https://morpho.org
              example:
              - name: Morpho
                logoUri: https://example.com/morpho-logo.png
                url: https://morpho.org
              - name: Aave V3
                logoUri: https://example.com/aave-logo.png
                url: https://aave.com
              - name: Euler
                logoUri: https://example.com/euler-logo.png
                url: https://www.euler.finance
components:
  securitySchemes:
    x-lifi-api-key:
      type: apiKey
      in: header
      name: x-lifi-api-key