DeBank Protocol API

Get protocol info

Operations 3

GET /v1/protocol #
GET /v1/protocol/all_list #
GET /v1/protocol/list #

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/debank-protocol-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

debank-protocol-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DeBank Open Protocol API
  version: '1.0'
  description: Build for DeFi Developers.
servers:
- url: /
security:
- accessKey: []
tags:
- name: Protocol
  description: Get protocol info
paths:
  /v1/protocol:
    get:
      responses:
        '200':
          description: return protocol
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Protocol'
      operationId: get_protocol
      parameters:
      - name: id
        in: query
        required: true
        description: protocol id
        schema:
          type: string
      tags:
      - Protocol
  /v1/protocol/all_list:
    get:
      responses:
        '200':
          description: return protocol list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Protocol'
      operationId: get_protocol_all_list
      tags:
      - Protocol
  /v1/protocol/list:
    get:
      responses:
        '200':
          description: return protocol list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Protocol'
      operationId: get_protocol_list
      parameters:
      - name: chain_id
        in: query
        required: true
        description: ChainID
        schema:
          type: string
      tags:
      - Protocol
components:
  schemas:
    Protocol:
      properties:
        id:
          type: string
          description: protocol id
          example: compound
        chain:
          type: string
          description: chain name
          example: eth
        name:
          type: string
          example: Compound
        logo_url:
          type: string
          example: https://static.debank.com/image/project/logo_url/compound/b4b9c8de20952846a1c9dfcded47d0db.png
        site_url:
          type: string
          description: Prioritize websites that can be interacted with, not official websites
          example: https://app.compound.finance
        has_supported_portfolio:
          type: boolean
          description: Is portfolio already supported
          example: true
        tvl:
          type: integer
          description: User deposit value in this protocol
          example: 10000
      type: object
  securitySchemes:
    accessKey:
      type: apiKey
      in: header
      name: AccessKey