MPC Tally API Server

get-address-received-delegations

Returns delegations received by an address

Input Schema

NameRequiredDescriptionDefault
addressYesThe Ethereum address to get received delegations for (0x format)
isDescendingNoSort in descending order
limitNoMaximum number of delegations to return (default: 20, max: 50)
organizationSlugYesFilter by organization slug
sortByNoField to sort by

Input Schema (JSON Schema)

{ "properties": { "address": { "description": "The Ethereum address to get received delegations for (0x format)", "type": "string" }, "isDescending": { "description": "Sort in descending order", "type": "boolean" }, "limit": { "description": "Maximum number of delegations to return (default: 20, max: 50)", "type": "number" }, "organizationSlug": { "description": "Filter by organization slug", "type": "string" }, "sortBy": { "description": "Field to sort by", "enum": [ "votes" ], "type": "string" } }, "required": [ "address", "organizationSlug" ], "type": "object" }