MPC Tally API Server

list-proposals

List proposals for a specific DAO or organization using its slug

Input Schema

NameRequiredDescriptionDefault
afterCursorNoCursor for pagination (string ID)
beforeCursorNoCursor for previous page pagination (string ID)
includeArchivedNoInclude archived proposals
isDescendingNoSort in descending order (default: true)
isDraftNoFilter for draft proposals
limitNoMaximum number of proposals to return (default: 50, max: 50)
slugYesThe slug of the DAO (e.g., 'uniswap')

Input Schema (JSON Schema)

{ "properties": { "afterCursor": { "description": "Cursor for pagination (string ID)", "type": "string" }, "beforeCursor": { "description": "Cursor for previous page pagination (string ID)", "type": "string" }, "includeArchived": { "description": "Include archived proposals", "type": "boolean" }, "isDescending": { "description": "Sort in descending order (default: true)", "type": "boolean" }, "isDraft": { "description": "Filter for draft proposals", "type": "boolean" }, "limit": { "description": "Maximum number of proposals to return (default: 50, max: 50)", "type": "number" }, "slug": { "description": "The slug of the DAO (e.g., 'uniswap')", "type": "string" } }, "required": [ "slug" ], "type": "object" }