Skip to main content
The indexer address endpoints give you a more complete view of an address than the raw node. You get full transaction history, token balances with metadata, and activity summaries, all paginated and sorted by the indexer.

Get address info

Returns a summary of an address including its balance, transaction count, and token holdings.

Get address balance

Returns the current ALPH balance and token balances for an address.

Get address transactions

Returns paginated transaction history for an address sorted by timestamp descending.

Get address token transactions

Returns transactions involving a specific token for an address. Useful for tracking token transfers in and out.

Get all tokens held by an address

Returns a list of all token IDs held by an address with their balances.
A balance of "1" on a token typically means it’s an NFT, fungible tokens usually have amounts in the range of 10^18.

Get address mempool transactions

Returns unconfirmed transactions for an address currently sitting in the mempool.

Get address contract events

Returns contract events where the address appears as a field value. Useful for tracking activity involving a specific address across multiple contracts.

Tracking deposits to an address

A common use case is monitoring when an address receives a payment. The recommended approach is to poll the transaction history endpoint and compare against the last seen transaction hash:
For a production setup, save the timestamp of the last processed transaction and filter results newer than that timestamp.

Parameters reference