Find Active Proposals
Tier: free DAO discovery, then standard proposal discovery.
- Find the canonical
daoIdwithGET /v2/daos. - Query proposals with an active lifecycle status.
- Read rows from
data.items. - Keep the returned
proposalKeyfor detail or vote requests.
curl -H "x-degov-api-token: <token>" \
"https://agent-api.degov.ai/v2/proposals?daoId=example-dao&lifecycleStatus=active&sort=endingSoon&limit=25"
{
"data": {
"items": [
{
"proposalKey": "p1_opaque",
"identity": { "daoId": "example-dao", "provider": "snapshot", "externalId": "0xabc" },
"title": "Fund the governance working group",
"lifecycleStatus": "active",
"outcome": null,
"endAt": "2026-08-14T18:00:00Z",
"coverageStatus": "ready"
}
]
},
"meta": { "page": { "limit": 25, "hasMore": false } }
}
If the DAO is missing, verify coverage with data-status. If the query is too broad, add a DAO, time window, status, or provider filter.