Skip to main content

Goverland Core API (1.0.0)

Download OpenAPI specification:Download

Intro

The Core API provides a variety of endpoints for interacting with Decentralized Autonomous Organizations (DAOs), managing feeds and proposals associated with DAOs, handling voting processes, and managing subscriptions to DAO updates.

Authentication

Goverland Core API does not require authentication except Subscriptions and Votes operations. To make API calls to Subscriptions and Votes endpoints you need to claim an API key in our Discord and use it in Authorization header. Claim API Key

auth

Security Scheme Type: API Key
Header parameter name: Authorization

DAOs

Get DAOs List

Returns a list of requested DAOs with details based on various criteria.

query Parameters
query
string
Example: query=gnosis

Finding DAOs by title

category
string
Example: category=social

Filter DAOs by category

daos
string
Example: daos="1b5bd443-fba8-4e75-bad6-2803397d3719","758d34f1-ff95-4eef-9be1-4b47dce189b5"

Comma-separated DAOs' IDs to retrieve

limit
integer
Example: limit=3

Number of DAOs to return.

offset
integer

How many DAOs should be skipped

Responses

Request samples

curl -H 'accept: application/json' \
  'https://core.goverland.xyz/v1/daos?query=gnosis&category=social&daos=&limit=3&offset=0'

Response samples

Content type
application/json
[
  • {
    },
  • {
    }
]

Get Top DAOs in Each Category

Returns a list of top DAOs for each category, such as creator, grant, investment, media, new DAOs, popular DAOs, protocol, service, social, etc. Make sure to use limit query parameter to get a subset of top DAOs inside each category.

query Parameters
limit
required
integer
Example: limit=1

How many elements should be in each category

Responses

Request samples

curl -H 'accept: application/json' 'https://core.goverland.xyz/v1/daos/top?limit=1'

Response samples

Content type
application/json
[
  • {
    }
]

Get DAO by ID

Returns a requested DAO including full info about DAO, for example with profile info (id, alias, created_at, updated_at, name, about, avatar, terms, location, website, twitter, github, coingecko, email, network, symbol, skin, domain), strategies, voting details, categories, treasures, count of followers, proposals, voters and active votes, popularity_index, etc.

path Parameters
dao_id
required
string
Example: 0f08144e-fe19-4098-baf7-88adf1f9a428

A unique DAO ID.

Responses

Request samples

curl -H 'accept: application/json' \
  'https://core.goverland.xyz/v1/daos/0f08144e-fe19-4098-baf7-88adf1f9a428'

Response samples

Content type
application/json
{
  • "id": "0f08144e-fe19-4098-baf7-88adf1f9a428",
  • "alias": "safe.eth",
  • "created_at": "2023-09-29T19:18:00.689107Z",
  • "updated_at": "2024-07-03T12:25:40.8164Z",
  • "name": "SafeDAO",
  • "private": false,
  • "about": "Unlock Ownership.",
  • "avatar": "ipfs://bafkreihajbe776zgzt7crg4ekq3xpq6nghyr7we2hrldpygzhdljgc7nm4",
  • "location": "",
  • "twitter": "safe",
  • "github": "safe-global",
  • "coingecko": "",
  • "email": "",
  • "network": "1",
  • "symbol": "SAFE",
  • "skin": "fortube",
  • "domain": "",
  • "strategies": [],
  • "voting": {
    },
  • "categories": [
    ],
  • "treasures": [ ],
  • "followers_count": 3238,
  • "proposals_count": 32,
  • "guidelines": "",
  • "template": "",
  • "parent_id": "",
  • "activity_since": 1666021335,
  • "voters_count": 3238,
  • "active_votes": 5,
  • "verified": true,
  • "popularity_index": 66.86343137349684
}

Get Feed by DAO ID

Returns a feed of a requested DAO described by various parameters such as a list of DAO proposals, details of proposal (link, discussion, timeline), actions (created/ updated/ ended), votes, quorum, score, etc. This endpoint is useful for retrieving updates and proposals relevant to the specific DAO. Make sure to use limit query parameter to get a subset of top DAO's proposals.

path Parameters
dao_id
required
string
Example: c8c85359-9056-4b42-9311-f13de2051389

Unique identifier of the DAO.

query Parameters
limit
integer
Example: limit=2

Number of feed items to return.

offset
integer

Number of feed items to skip.

Responses

Request samples

curl -H 'accept: application/json' \
  'https://core.goverland.xyz/v1/daos/c8c85359-9056-4b42-9311-f13de2051389/feed?limit=2&offset=0'

Response samples

Content type
application/json
[
  • [
    ]
]

Feed

Get Feed by Filters

Set filters to retrieve a list of feed items filtered by the specified criteria. For example, get only active proposals for specific DAOs that are created/ updated/ ended. Make sure to use limit query parameter to get a subset of requested items.

query Parameters
limit
integer
Example: limit=2

Number of elements to return.

offset
integer

Number of elements to skip before starting to collect the result set.

Request Body schema: application/json
dao_list
Array of strings

List of comma-separated DAOs' IDs to filter the feed.

is_active
boolean

Filter by active status

types
string

List of types to filter the feed.

actions
string

List of actions to filter the feed.

Responses

Request samples

Content type
application/json
{
  • "dao_list": [
    ],
  • "is_active": false,
  • "types": "proposal",
  • "actions": "proposal.updated"
}

Response samples

Content type
application/json
[
  • {
    },
  • {
    }
]

Proposals

Get Top Proposals

Returns a list of top proposals across all DAOs. Make sure to use limit query parameter to get a subset of top proposals.

query Parameters
limit
integer
Example: limit=2

Number of top proposals to return.

offset
integer

Number of top proposals to skip.

Responses

Request samples

curl -H 'https://core.goverland.xyz/v1/proposals/top?limit=2&offset=0'

Response samples

Content type
application/json
[
  • {
    },
  • {
    }
]

Get Proposals List

Returns a list of requested proposals based on various criteria (e.g., specified DAO, topic category, title, etc.).

query Parameters
dao
string
Example: dao=3ee9ba01-1b1f-4a6f-aeda-8b8610c02f2f

a unique DAO ID associated with the proposal

category
string
Example: category=creator

Categories to describe DAO, such as creator, grant, investment, media, new DAOs, popular DAOss, protocol, service, social, etc.

title
string
Example: title=ownership

The heading of the proposal contains this word or phrase.

limit
integer
Example: limit=2

Number of proposals to return.

offset
integer

Number of proposals to skip.

Responses

Request samples

curl -H 'https://core.goverland.xyz/v1/proposals?dao=9bc2738a-ca28-483d-b8e1-87b4b9b17b13&category=creator&title=&limit=2&offset=0'

Response samples

Content type
application/json
[
  • {
    },
  • {
    }
]

Get Proposal by ID

Returns a requested proposal including full info about it.

path Parameters
proposal_id
required
string
Example: 0xd79322ed0a13af37bd4f95b15ab8cceb2139d19256c1273cd97c4ddb7a19e6f6

A unique identifier of the proposal.

Responses

Request samples

curl -H 'https://core.goverland.xyz/v1/proposals/0xd79322ed0a13af37bd4f95b15ab8cceb2139d19256c1273cd97c4ddb7a19e6f6'

Response samples

Content type
application/json
{
  • "id": "0xd79322ed0a13af37bd4f95b15ab8cceb2139d19256c1273cd97c4ddb7a19e6f6",
  • "created_at": "2024-02-02T23:24:21.990765Z",
  • "updated_at": "2024-07-04T01:45:03.535713Z",
  • "ipfs": "bafkreidvduhsy5xvu43hsnzydlncshw7epenp7txz3dx3j4kzi44wxzysm",
  • "author": "0x76184Ad07587b3cAc533eEfA776F5dDa3B87B392",
  • "ens_name": "pricota.eth",
  • "created": 1706916231,
  • "dao_id": "0fb9a0cb-37ce-4a80-b3d5-cfef7c7c6e4e",
  • "network": "1",
  • "symbol": "VOTE",
  • "type": "single-choice",
  • "strategies": [
    ],
  • "title": "Do you believe that money brings happiness?",
  • "body": "undefined \n![image](ipfs://bafkreib4zofw7sdtaagmzrasgoftl7gfktrmt6dpgp2npcevsitlhw35p4)\n undefined",
  • "discussion": "",
  • "choices": [
    ],
  • "start": 1706916230,
  • "end": 1722378180,
  • "quorum": 0,
  • "privacy": "",
  • "snapshot": "19143953",
  • "state": "active",
  • "app": "snapshot",
  • "scores": [
    ],
  • "scores_state": "pending",
  • "scores_total": 1,
  • "scores_updated": 1706916245,
  • "votes": 1,
  • "timeline": [
    ]
}

Votes

Get Votes by Proposal ID

Returns a list of votes cast on a specific proposal.

path Parameters
proposal_id
required
string
Example: 0x6257bef302ae615a1951f17244691d04e9f958e0f27dff5ec0833d06ae4d9772

A unique identifier of the proposal.

query Parameters
limit
integer
Example: limit=3

Number of votes to return.

offset
integer

How many votes should be skipped.

Responses

Request samples

curl -H 'https://core.goverland.xyz/v1/proposals/0x6257bef302ae615a1951f17244691d04e9f958e0f27dff5ec0833d06ae4d9772/votes?limit=3&offset=0'

Response samples

Content type
application/json
[
  • {
    },
  • {
    },
  • {
    }
]

Validate Voting Request

Authorizations:
auth
path Parameters
proposal_id
required
string

Responses

Prepare Voting Request

path Parameters
proposal_id
required
string

Responses

Vote

Responses

Subscriptions

Subscribe to DAOs Updates

Responses

Update Subscriber

Request Body schema: application/json
object

Responses

Request samples

Content type
application/json

Unsubscribe from DAOs Updates

Responses