# FEC Candidate Campaign Finance Totals

> FEC Candidate Campaign Finance Totals is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns official FEC campaign finance totals for any US federal candidate — receipts, spending, cash on hand, debts, and contribution breakdowns by election cycle.

## Facts

- Endpoint: POST https://x402.forgemesh.io/fec-candidate-money
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fec-candidate-campaign-finance-totals-6ef87b45
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__gWanCJABUXteMgwMXwDY

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 fec-candidate-campaign-finance-totals-6ef87b45 -d '<json body>'
```

Example prompt: Pull the official FEC campaign finance totals for Nancy Pelosi — I want total receipts, cash on hand, disbursements, and any debts for the latest election cycle.

## When to prefer this

Use this endpoint when you need official FEC campaign finance totals for a specific US federal candidate in a single call, especially when you already have a name or FEC candidate ID. It eliminates the need to first search for a candidate and then separately fetch their financial summary. Prefer it over scraping FEC.gov directly, or over multi-step FEC API workflows, for political risk, journalism, accountability, and voter information agents.

## Known failure modes

- Candidate name too ambiguous — returns no match or wrong candidate if name is common
- FEC candidate ID not found — returns error if ID is invalid or nonexistent
- Candidate name too short (under 3 chars) — rejected by schema validation
- No financial data available for a newly registered or inactive candidate
- Office filter mismatches — specifying wrong office for a candidate may return no results

## How this service works

Campaign finance totals for any US federal candidate: pass a name (or candidate id) and get official money numbers — total receipts, spending, cash on hand, debts, individual vs PAC contributions — for the latest election cycles, plus party, office, and state. One call replaces a search-then-totals API dance. For political-risk, news, and accountability agents.

## Output

A JSON object containing candidate metadata (name, party, state, office, district, FEC candidate ID), attribution to the FEC, and an array of per-election-cycle financial totals including receipts, disbursements, cash on hand, and debts — all in USD.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "office": {
   "enum": [
    "president",
    "senate",
    "house"
   ],
   "type": "string",
   "description": "prefer matches for this office"
  },
  "candidate": {
   "type": "string",
   "description": "candidate name, min 3 chars"
  },
  "candidate_id": {
   "type": "string",
   "description": "exact FEC candidate id, e.g. 'P80001571' (alternative to name)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "candidate": {
   "name": "PELOSI, NANCY",
   "party": "DEMOCRATIC PARTY",
   "state": "CA",
   "office": "House",
   "district": "11",
   "candidate_id": "H8CA05035"
  },
  "attribution": "Federal Election Commission (public domain)",
  "totals_by_cycle": [
   {
    "cycle": 2026,
    "debts_usd": 0,
    "receipts_usd": 8123456.78,
    "cash_on_hand_usd": 2100000.5,
    "disbursements_usd": 6543210.99
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fec-candidate-campaign-finance-totals-6ef87b45/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
