> For the complete documentation index, see [llms.txt](https://docs.belugas.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.belugas.io/aquarius.js/api-methods/governance.md).

# Governance

Makes a request to the GovernanceService API. The Governance Service includes three endpoints to retrieve information about BUL accounts. For more details, see the Belugas API documentation.

* `options` (object) A JavaScript object of API request parameters.
* `endpoint` (string) A string of the name of the corresponding governance service endpoint. Valid values are `proposals`, `voteReceipts`, or `accounts`.
* `RETURN` (object) Returns the HTTP response body or error.

```
(async function() {
  const proposal = await Belugas.api.governance(
    { "proposal_ids": [ 20 ] }, 'proposals'
  );

  console.log('proposal', proposal); // JavaScript Object
})().catch(console.error);
```
