MPC Tally API Server

get-delegators

Get list of delegators for a specific address

Input Schema

NameRequiredDescriptionDefault
addressYesThe Ethereum address to get delegators for (0x format)
afterCursorNoCursor for pagination
beforeCursorNoCursor for previous page pagination
governorIdNoFilter by specific governor ID
isDescendingNoSort in descending order (default: true)
limitNoMaximum number of delegators to return (default: 20, max: 50)
organizationIdNoFilter by specific organization ID
organizationSlugNoFilter by organization slug (e.g., 'uniswap'). Alternative to organizationId
sortByNoHow to sort the delegators (default: id)

Input Schema (JSON Schema)

{ "properties": { "address": { "description": "The Ethereum address to get delegators for (0x format)", "type": "string" }, "afterCursor": { "description": "Cursor for pagination", "type": "string" }, "beforeCursor": { "description": "Cursor for previous page pagination", "type": "string" }, "governorId": { "description": "Filter by specific governor ID", "type": "string" }, "isDescending": { "description": "Sort in descending order (default: true)", "type": "boolean" }, "limit": { "description": "Maximum number of delegators to return (default: 20, max: 50)", "type": "number" }, "organizationId": { "description": "Filter by specific organization ID", "type": "string" }, "organizationSlug": { "description": "Filter by organization slug (e.g., 'uniswap'). Alternative to organizationId", "type": "string" }, "sortBy": { "description": "How to sort the delegators (default: id)", "enum": [ "id", "votes" ], "type": "string" } }, "required": [ "address" ], "type": "object" }

You must be authenticated.

Other Tools