DeBank Chain API

Get chain info

Operations 2

GET /v1/chain #
GET /v1/chain/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-chain-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-chain-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DeBank Open Chain API
  version: '1.0'
  description: Build for DeFi Developers.
servers:
- url: /
security:
- accessKey: []
tags:
- name: Chain
  description: Get chain info
paths:
  /v1/chain:
    get:
      responses:
        '200':
          description: return chain
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Chain'
      description: Get chain info by id
      operationId: get_chain
      parameters:
      - name: id
        in: query
        required: true
        description: ChainID
        schema:
          type: string
          enum:
          - merlin
          - taiko
          - celo
          - zircuit
          - xdc
          - sonic
          - scrl
          - soneium
          - avax
          - arb
          - katana
          - cro
          - blast
          - sophon
          - citrea
          - dbk
          - core
          - bera
          - bsc
          - sei
          - cfx
          - g0
          - uni
          - eth
          - hemi
          - bb
          - world
          - tempo
          - kite
          - morph
          - zora
          - mnt
          - kava
          - zeta
          - lisk
          - matic
          - rsk
          - xlayer
          - abs
          - hyper
          - metis
          - mode
          - btr
          - megaeth
          - story
          - chiliz
          - flr
          - plume
          - era
          - op
          - manta
          - klay
          - opbnb
          - bob
          - monad
          - ethlink
          - plasma
          - gravity
          - b2
          - hood
          - ink
          - lens
          - fuse
          - itze
          - base
          - ron
          - xdai
          - linea
          - ape
          - stable
          - wemix
          - cyber
          - frax
      tags:
      - Chain
  /v1/chain/list:
    get:
      responses:
        '200':
          description: return chain list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Chain'
      description: Get supported chain list
      operationId: get_chain_list
      tags:
      - Chain
components:
  schemas:
    Chain:
      properties:
        id:
          type: string
          description: chain id
          example: eth
        community_id:
          type: integer
          description: Community-identified id
          example: 1
        name:
          type: string
          example: Ethereum
        logo_url:
          type: string
          example: https://static.debank.com/image/chain/logo_url/eth/6e0cd1f895af9836ee8c32cfc03bc279.png
        native_token_id:
          type: string
          description: native token
          example: eth
        wrapped_token_id:
          type: string
          description: the erc20-wrapped of native token
          example: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'
        is_support_balance_change:
          type: boolean
          description: 'Whether or not the chain support token balance '
          example: true
      type: object
  securitySchemes:
    accessKey:
      type: apiKey
      in: header
      name: AccessKey