Governance forum posts across 59 protocols — the discussion layer behind every DAO proposal.
59 forums behind one endpoint. The record is the post, not the thread — title and url point to the top of the thread on the protocol's Discourse (or similar), and the author is the Discourse handle.
Every field the corpus returns for one record. Real shape — walked corpus-wide, not sampled.
A curl that runs against the live API right now, plus the MCP tool names for the same data.
MCP tools
get_forumget_forum_detailget_trending_forumThree concrete questions this capability answers that a general crypto API does not.
?tags=arbitrum returns 2,170 governance posts; pair with the DAO snapshot endpoint on the same slug to reconstruct the deliberation, not just the vote.published_at per post is real and a daily count per source is a single group-by.Required, not optional. Coverage gaps, staleness and parameter traps that were observed by running the curl above against the live server on 2026-09-18.
No sentiment, likes or bookmarks on this endpoint.
Walked one record on 18 Sep 2026: forum records carry only id, hash, title, url, author, published_at, image, source. The news endpoint's sentiment, is_bookmarked, is_liked, likes fields do not exist here — the schema is intentionally leaner. Treat a client that expects news-shaped records as broken against this endpoint.
author is the Discourse handle, not a human name.
The example record above carries author: "reserve_forum" — a bot or community handle, not a person. The endpoint does not link handle → human identity; do not build a byline view from it.
sources needs the slug.
Verified on 18 Sep 2026: ?sources=reserve returns 0, ?sources=reserve_forum returns 544. Same shape as the news endpoint — the slug from any record's source.slug is the parameter value.