MPC Tally API Server

get-proposal

Get detailed information about a specific proposal. You must provide either the Tally ID (globally unique) or both onchainId and governorId (unique within a governor).

Input Schema

NameRequiredDescriptionDefault

No arguments

Input Schema (JSON Schema)

{ "oneOf": [ { "properties": { "id": { "description": "The proposal's Tally ID (globally unique across all governors)", "type": "string" }, "includeArchived": { "description": "Include archived proposals", "type": "boolean" }, "isLatest": { "description": "Get the latest version of the proposal", "type": "boolean" } }, "required": [ "id" ] }, { "properties": { "governorId": { "description": "The governor's ID (required when using onchainId)", "type": "string" }, "includeArchived": { "description": "Include archived proposals", "type": "boolean" }, "isLatest": { "description": "Get the latest version of the proposal", "type": "boolean" }, "onchainId": { "description": "The proposal's onchain ID (only unique within a governor)", "type": "string" } }, "required": [ "onchainId", "governorId" ] } ], "type": "object" }