MPC Tally API Server

get-address-votes

Get votes cast by an address for a specific organization

Input Schema

NameRequiredDescriptionDefault
addressYesThe address to get votes for
afterCursorNoCursor for pagination
limitNoMaximum number of votes to return (default: 20)
organizationSlugYesThe organization slug to get votes from

Input Schema (JSON Schema)

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