GET: /governance/accounts
GovernanceAccountRequest
The request to the Governance Account API can specify a number of filters, such as which accounts to retrieve information about.
Type | Key | Description |
---|---|---|
bytes |
| A list of accounts to filter on, e.g.:?addresses=0x... |
string |
| Filter for accounts by. E.g. “votes” | “balance” | “proposals_created” ( |
bool |
| Will populate a list of transaction history for the accounts when request is submittedwith_history=true ( |
uint32 |
| Number of accounts to include in the response, default is 100 |
uint32 |
| Pagination offset for accounts in the response, default is 0 |
GovernanceAccountResponse
The Governance Account API returns a list of accounts that match the given filters on the request
Type | Key | Description |
---|---|---|
bool |
| If set false, indicates an error returning data. |
AquariusAccountData |
| The list of governance accounts matching the requested filter |
AquariusAccountData
Type | Key | Description |
uint32 |
| Offset of pagination |
uint32 |
| Limit of pagination |
uint32 |
| Total count of pagination |
AquariusAccount |
| The list of governance accounts matching the requested filter |
AquariusAccount
Type | Key | Description |
---|---|---|
uuid |
| Unique id of AquariusAccount |
bytes |
| The address of the given ARS account |
float |
| The percentage of voting weight of total ARS |
uint32 |
| The number of proposals voted on in the Aquarius Governance System |
string |
| Voting power |
datetime |
| Created timestamp |
datetime |
| Updated timestamp |
Last updated