ToolAssay

Paid API that reads a full DAO proposal and returns a structured voting recommen

Paid API that reads a full DAO proposal and returns a structured voting recommendation with reasons.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
526 msmedian answer time
$0.05listed price per call
$0.05price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://q402.quackai.ai/api/x402/governance/analyze

CategoryEverything else
Provider hostq402.quackai.ai
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days9 from 3 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.05 526 ms

Example input (from the provider)

{
  "description": "Paid API that reads a full DAO proposal and returns a structured voting recommendation with reasons.",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "Governance Proposal Analysis: Send any Snapshot proposal (or raw proposal text) and configurable priority weights; get back a voting recommendation (For / Against / Abstain), a multi-dimension rating breakdown, and the reasoning. Reads the full proposal body, not the title. Pay per call via x402, USDC on Base. Built by Quack AI, the team running AI delegates in production since 2025.",
  "properties": {
    "input": {
      "properties": {
        "body": {
          "oneOf": [
            {
              "description": "Fetch by DAO and Snapshot proposal ID",
              "properties": {
                "Community_Impact": {
                  "maximum": 100,
                  "minimum": 0,
                  "type": "integer"
                },
                "Decentralization": {
                  "maximum": 100,
                  "minimum": 0,
                  "type": "integer"
                },
                "Risk_Control": {
                  "maximum": 100,
                  "minimum": 0,
                  "type": "integer"
                },
                "Sustainability": {
                  "maximum": 100,
                  "minimum": 0,
                  "type": "integer"
                },
                "customPrompt": {
                  "type": "string"
                },
                "dao": {
                  "description": "DAO name or Snapshot space (e.g. 'moonwell', 'uniswap')",
                  "type": "string"
                },
                "proposalId": {
                  "description": "Snapshot proposal hash",
                  "type": "string"
                }
              },
              "required": [
                "dao",
                "proposalId"
              ]
            },
            {
              "description": "Analyze raw proposal text",
              "properties": {
                "Community_Impact": {
                  "maximum": 100,
                  "minimum": 0,
                  "type": "integer"
                },
                "Decentralization": {
                  "maximum": 100,
                  "minimum": 0,
                  "type": "integer"
                },
                "Proposal_Content": {
                  "description": "Full proposal text",
                  "type": "string"
                },
                "Risk_Control": {
                  "maximum": 100,
                  "minimum": 0,
                  "type": "integer"
                },
                "Sustainability": {
                  "maximum": 100,
                  "minimum": 0,
                  "type": "integer"
                },
                "customPrompt": {
                  "type": "string"
                }
              },
              "required": [
                "Proposal_Content"
              ]
            }
          ],
          "type": "object"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "title": "GovernanceAnalysis",
  "type": "object"
}

This page as JSON