DeBank Wallet API

It is not stable at present. If you want to use it, please contact the official first.

Operations 3

POST /v1/wallet/explain_tx #
GET /v1/wallet/gas_market #
POST /v1/wallet/pre_exec_tx #

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-wallet-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-wallet-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DeBank Open Wallet API
  version: '1.0'
  description: Build for DeFi Developers.
servers:
- url: /
security:
- accessKey: []
tags:
- name: Wallet
  description: It is not stable at present. If you want to use it, please contact the official first.
paths:
  /v1/wallet/explain_tx:
    post:
      responses:
        '200':
          description: explain typed data
      description: explain tx
      operationId: post_explain_tx
      tags:
      - Wallet
  /v1/wallet/gas_market:
    get:
      responses:
        '200':
          description: return gas list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/gasprice'
      description: gas market
      operationId: get_gas_market
      parameters:
      - name: chain_id
        in: query
        required: true
        description: ChainId
        schema:
          type: string
      - name: custom_price
        in: query
        description: CustomPrice
        schema:
          type: string
          default: 0
      tags:
      - Wallet
  /v1/wallet/pre_exec_tx:
    post:
      responses:
        '200':
          description: pre exec tx
      description: pre exec tx
      operationId: post_pre_exec_tx
      tags:
      - Wallet
components:
  schemas:
    gasprice:
      properties:
        level:
          type: string
          example: slow
        price:
          type: integer
          example: 30000000000
      type: object
  securitySchemes:
    accessKey:
      type: apiKey
      in: header
      name: AccessKey