MPC Tally API Server

get-address-daos-proposals

Returns proposals from DAOs where a given address has participated (voted, proposed, etc.)

Input Schema

NameRequiredDescriptionDefault
addressYesThe Ethereum address
afterCursorNoCursor for pagination
limitNoMaximum number of proposals to return (default: 20, max: 50)
organizationSlugYesThe organization slug to get proposals from

Input Schema (JSON Schema)

{ "properties": { "address": { "description": "The Ethereum address", "type": "string" }, "afterCursor": { "description": "Cursor for pagination", "type": "string" }, "limit": { "description": "Maximum number of proposals to return (default: 20, max: 50)", "type": "number" }, "organizationSlug": { "description": "The organization slug to get proposals from", "type": "string" } }, "required": [ "address", "organizationSlug" ], "type": "object" }