원클릭으로
debank
Query DeBank OpenAPI for wallet portfolios, token holdings, DeFi positions, and transaction history.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Query DeBank OpenAPI for wallet portfolios, token holdings, DeFi positions, and transaction history.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Trustless ERC-8183 job evaluation — run Client's verification program inside a zkVM with ZK proof.
Binance official spot trading skill — place orders, manage accounts, and access real-time market data via Binance Spot API. Sourced from github.com/binance/binance-skills-hub.
Create, fund, and settle on-chain agent jobs via ERC-8183 Agentic Commerce Protocol.
Binance Web3 official skill — query any wallet address for token holdings, balances, and portfolio data across BSC, Base, and Solana. Sourced from github.com/binance/binance-skills-hub.
Binance Web3 official skill — crypto market rankings including trending tokens, smart money inflow, social hype, meme ranks, and top trader PnL leaderboards. Sourced from github.com/binance/binance-skills-hub.
Binance Web3 official skill — real-time meme token launchpad tracking and AI-powered trending topic discovery on Solana and BSC. Sourced from github.com/binance/binance-skills-hub.
| name | debank |
| description | Query DeBank OpenAPI for wallet portfolios, token holdings, DeFi positions, and transaction history. |
| metadata | {"cryptoclaw":{"emoji":"🏦","requires":{"env":["DEBANK_API_KEY"]},"primaryEnv":"DEBANK_API_KEY"}} |
Query wallet portfolios, token balances, DeFi protocol positions, NFTs, and transaction history across 100+ EVM chains.
https://pro-openapi.debank.com/v1
Requires API key: set DEBANK_API_KEY. Paid plans at https://cloud.debank.com/open-api
Pass via header: AccessKey: {key}
GET /user/total_balance?id={address}
Returns total USD value across all chains.
GET /user/chain_list?id={address}
Returns per-chain balance breakdown with chain name, logo, and USD value.
GET /user/all_token_list?id={address}&is_all=true
Returns all token holdings across all chains with:
chain — chain identifiername, symbol, decimalsamount — raw balanceprice — current USD pricelogo_urlFilter by chain: GET /user/token_list?id={address}&chain_id={chain}
Chain IDs: bsc, eth, matic, arb, op, base, avax, ftm
GET /user/all_complex_protocol_list?id={address}
Returns all DeFi positions grouped by protocol:
Each position includes USD value, APY (when available), and health factor for lending.
Filter by chain: GET /user/complex_protocol_list?id={address}&chain_id={chain}
GET /user/all_nft_list?id={address}&is_all=true
Returns NFT holdings with collection name, floor price, and image.
GET /user/history_list?id={address}&chain_id={chain}&page_count=20
Returns parsed transaction history with human-readable descriptions:
start_time parameterGET /token?id={address}&chain_id={chain}
Returns token metadata: name, symbol, price, market cap, holders, logo.
GET /protocol?id={protocol_id}
Returns protocol details: TVL, chains, site URL, logo.
GET /protocol/list
Returns all tracked protocols. Large payload — filter output.
all_* endpointsall_token_list and all_complex_protocol_list for full portfolio overviewchain_id is required — ask user which chain or iterate through their active chainscoingecko for price charts and security-check for token risk assessmentUser: "What's in my wallet?"
→ Call all_token_list for active wallet, present holdings sorted by USD value
User: "Show my DeFi positions"
→ Call all_complex_protocol_list, group by protocol, show value and APY
User: "What's the portfolio of 0x...?"
→ Call total_balance for overview, then all_token_list for details
User: "Show my recent transactions on BSC"
→ Call history_list with chain_id=bsc, present last 20 parsed transactions