Skip to main content

BalanceList

The BalanceList object represents a paginated collection of Balance objects representing token and NFT balances for a specific account or contract address.

Schema Definition

type BalanceList {
numEntries: UInt64!
cursor: UInt64
entries: [Balance!]!
}

Fields

FieldTypeDescription
numEntriesUInt64! non-null scalarThe total number of balance entries matching the query criteria in the current page.
cursorUInt64 scalarAn optional pagination cursor pointing to the next page of results. Use this value with skip in subsequent queries to fetch the next page.
entries[Balance!]! non-null objectAn array of Balance objects representing individual token/NFT holdings.

Returned By

balances query