PerformanceBlog
Tempo MCP serverGive agents search and read tools for Tempo docs
Skip to content
LogoLogo

Balances

How much of each token an account holds.

List address balances

GET/v1/addresses/{address}/balances

Lists how much of each TIP-20 token an account holds, ordered from largest to smallest balance. Amounts are returned in raw base units and human-readable form.

Path Parameters

addressRequired
string

The account address whose token balances you want to list.

Example0xbe058e1c4df8a4366a387bf595b284246a93039e

Query Parameters

chainId

Which Tempo network to query. Use the alias mainnet or testnet, or a numeric chain id. Defaults to mainnet when omitted.

currency
string

Only include verified tokens denominated in this currency (e.g. USD). Case-insensitive. Implies verified=true because the balances snapshot does not store currency for unverified tokens. Unknown currency strings are accepted but match no rows.

ExampleEUR
cursor
string

Opaque keyset cursor from a previous response (nextCursor); pass it back verbatim to fetch the next page. Omit for the first (head) page.

ExampleWzIzNDU2Nzg5LDBd
feeEligible
boolean

When true, include only tokens eligible to pay transaction fees on Tempo: verified tokens that have a Fee AMM pool, plus the default fee token (pathUSD). Use this to avoid a second /fee-amm/pools query when you only want fee-payable holdings.

Exampletrue
include
string[]

Comma-separated optional resources to embed, e.g. totalCount.

Values
totalCount
Example["totalCount"]
limit
integer·min 5·max 200·default 10

How many items to return per page (5–200, default 10).

Example10
page
integer·min 1·max 9007199254740991

Page number, 1-indexed (positional pagination for page-numbered access; page=1 is the head page). Mutually exclusive with cursor, and page × limit must be at most 10000 rows — use cursor pagination for deeper traversal. Pages are positional, so rows arriving at the head of a live feed can shift page contents.

Example1
verified
boolean

When true, include only tokens from Tempo’s curated verified token list.

Exampletrue

Responses