# ClearCheck – Federal Campaign Finance Profile

> ClearCheck – Federal Campaign Finance Profile is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up a US federal candidate's campaign finance profile: identity, total raised, total spent, and current cash on hand, sourced from FEC data.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/campaign
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-federal-campaign-finance-profile-6ee41e34
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z4DDP2jDlgUWtINWndV90

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability clearcheck-federal-campaign-finance-profile-6ee41e34
```

Example prompt: Can you pull up the federal campaign finance profile for Warren — I want to see how much she's raised, what she's spent, and what's left in the bank? Look for Senate candidates.

## When to prefer this

Choose this endpoint when you need structured, FEC-sourced campaign finance data for a named federal candidate — including fundraising totals, spending, cash on hand, and debt — especially when you need a quick profile lookup by name rather than building a full FEC API integration. Best for single-candidate lookups or small result sets; not suited for bulk data exports or PAC/committee-level queries.

## Known failure modes

- Candidate name not found in FEC database — returns empty candidates array or no bestMatch
- Ambiguous name matches multiple candidates — returns list of candidates without a clear bestMatch
- Office filter too narrow — restricts results so the actual candidate is excluded
- Candidate has not filed with FEC — finances fields may be null or zero
- FEC upstream API unavailable — service may return error or timeout
- Misspelled candidate name — no results returned

## How this service works

Federal campaign finance profile: who a candidate is, what they raised and spent, and what is left in the bank.

## Output

Returns a best-match candidate profile with name, party, state, office, incumbent/challenger status, district, and a detailed finances object covering total receipts, total disbursements, cash on hand, loans, debts owed, individual itemized and unitemized contributions, candidate self-funding, refunds, and the election year and filing period. Also includes a list of additional matching candidates, a verdict string, and reasons for the match selection.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Candidate name, e.g. 'Warren'"
      },
      "limit": {
       "type": "integer",
       "description": "Max candidates to return, default 3"
      },
      "office": {
       "enum": [
        "H",
        "S",
        "P"
       ],
       "type": "string",
       "description": "Office sought: H House, S Senate, P President"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "object",
       "properties": {
        "name": {
         "type": "string"
        },
        "office": {
         "type": "null"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "verdict": {
       "type": "string"
      },
      "bestMatch": {
       "type": "object",
       "properties": {
        "name": {
         "type": "string"
        },
        "party": {
         "type": "string"
        },
        "state": {
         "type": "string"
        },
        "office": {
         "type": "string"
        },
        "status": {
         "type": "string"
        },
        "district": {
         "type": "integer"
        },
        "finances": {
         "type": "object",
         "properties": {
          "loansUsd": {
           "type": "integer"
          },
          "refundsUsd": {
           "type": "number"
          },
          "debtsOwedUsd": {
           "type": "integer"
          },
          "electionYear": {
           "type": "integer"
          },
          "cashOnHandUsd": {
           "type": "number"
          },
          "coveringPeriod": {
           "type": "string"
          },
          "totalReceiptsUsd": {
           "type": "number"
          },
 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-federal-campaign-finance-profile-6ee41e34/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
