Skip to main content
Glama

Get Wallet History

get_wallet_history
Read-only

Get one page of decoded transaction history for an EVM wallet across DeBank-supported chains. Returns send, receive, and approval categories with protocol, token, exchange, gas, and USD metadata. Use the returned next_cursor as start_time to page backward.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chain_idsNoOptional DeBank chain identifiers; omit to query all supported chains.
page_countNoNumber of history entries to request (maximum 20).
start_timeNoReturn entries earlier than this Unix timestamp for cursor pagination.
wallet_addressYesEVM wallet address (0x-prefixed)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoThis is one page of DeBank's decoded activity history. It supports activity and gas analysis, but does not provide complete PnL or cost basis without historical execution prices.
errorsNo
cex_dictNo
has_moreNo
chain_idsYes
page_countYes
provenanceYes
start_timeYes
token_dictNo
next_cursorNo
history_listNo
project_dictNo
data_completeYes
wallet_addressYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations include readOnlyHint=true, so the safety profile is covered. The description adds important behavioral details beyond annotations: it reveals that the tool returns 'decoded' transactions with categories and metadata, and explains the pagination mechanism using next_cursor. This transparency is helpful and goes beyond the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the primary purpose, followed by return details and pagination guidance. Every sentence earns its place, and there is no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is moderately complex (4 params, output schema present). The description clearly covers what the tool returns, the scope of chains, and how to page through results. It is complete and actionable without needing to explain return values due to the output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for all parameters, so baseline is 3. The description adds value by explaining how start_time relates to the returned next_cursor for cursor pagination, which provides practical semantic meaning not fully captured in the parameter description alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Get one page of decoded transaction history for an EVM wallet across DeBank-supported chains.' It specifies the resource (wallet history), the scope (one page, EVM, DeBank-supported chains), and includes return categories, distinguishing it from sibling tools like get_transaction or get_wallet_approvals.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear usage instruction for pagination: 'Use the returned next_cursor as start_time to page backward.' It implies when to use this tool (for browsing transaction history) but does not explicitly state when not to use it or name alternatives among siblings. Still, the pagination guidance is actionable and valuable.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

Most tools target distinct blockchain/DeFi resources and actions. A few pairs like get_lending_rates vs get_yield_rates and get_defi_positions vs get_liquidation_risk have overlapping boundaries, but detailed descriptions and explicit redundancy notes (e.g., get_eth_balance vs get_wallet_portfolio) reduce confusion.

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern (e.g., get_block, convert_currency, decode_transaction). The only minor deviations are noun-first names like http_fetch and web_search, but the style is uniform and predictable.

Tool Count2/5

At 27 tools, the server exceeds the 25-tool threshold for 'too many' and feels heavy. While the breadth of DeFi and crypto features justifies some size, the number is unwieldy for an agent to scan efficiently and could be consolidated (e.g., merging balance-related tools).

Completeness4/5

The tool surface covers a wide range of blockchain data: balances, prices, TVL, yields, DEX quotes, gas, block/transaction details, approvals, and DeFi positions. Gaps include lack of wallet transaction history and NFT support, but these are beyond the server's clear focus on read-only DeFi analytics.

Resources