Skip to main content

Query Token Holders

This page covers how to fetch token holder data from the DAO Café GraphQL API. Endpoint: https://dao.cafe/graphql

Understanding Token Holders

Token holders are addresses that hold governance tokens. Each holder record tracks:
  • Balance: The actual token balance (tokens owned)
  • Votes: The voting power (may differ from balance due to delegation)
An address can have votes > balance if they’ve received delegations, or votes < balance if they’ve delegated to someone else.

Get Token Holders by DAO

Fetch all token holders in a DAO, ordered by voting power.
Variables:

Get Top Token Holders

Find the addresses with the highest token balances.

Get Token Holder by Address

Find a specific holder’s token balance and voting power in a DAO.
The holder ID format is: chainId_tokenAddress_holderAddress (all lowercase). Example: 1_0xb67b87d2f26928784f51a0e263a0f7a9a5efd833_0x983332bb0b689ed97907f658525d19f4d876d96c

Get Holdings by Address

Find all token holdings for a specific address across all DAOs.
This is useful for building portfolio views showing all DAO holdings for a wallet.

Get Holders with Delegations

Find holders who have received delegations (votes > balance).
Filter results where votes > balance to identify addresses that have received voting power through delegation.

Token Holder Schema

FieldTypeDescription
idStringComposite ID: chainId_token_holder
daoIdStringReference to DAO (chainId_governor)
chainIdIntNetwork chain ID (1 for Ethereum, 11155111 for Sepolia)
tokenAddressGovernance token contract address
holderAddressToken holder address
balanceBigIntToken balance (in wei)
votesBigIntVoting power (in wei)
updatedAtBigIntLast update timestamp
blockNumberBigIntLast update block number

Example Response

Balance and votes are returned as strings representing wei (18 decimals). Divide by 10^18 for human-readable amounts.