# FEC Committee Profile Lookup

> FEC Committee Profile Lookup is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves FEC committee profile data including type, party, designation, per-cycle financial totals, and independent expenditure summaries for PACs, Super PACs, and candidate committees.

## Facts

- Endpoint: GET https://payai.agentstools.dev/fec/committee
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fec-committee-profile-lookup-32eab23d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vRottZ1L8VUdHXiNbcCDV

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-committee-profile-lookup-32eab23d
```

Example prompt: Can you pull up the FEC committee profile for the Senate Majority PAC — I want to see their committee type, party, and how much they raised and spent this cycle, plus any independent expenditures they made?

## When to prefer this

Use this endpoint when you need structured FEC committee profile data — financials, type, party, and independent expenditures — for a specific PAC, Super PAC, or candidate committee, especially for research, compliance, or journalism workflows. Prefer this over raw FEC API access when you want a clean, pre-structured response without needing to handle FEC pagination or complex query syntax.

## Known failure modes

- Committee not found for given ID or name query — returns empty results or 404
- Ambiguous name query returns multiple or unexpected committees
- FEC data may lag real-time filings by days or weeks
- Invalid committee ID format returns error
- Rate limit or payment failure returns 402 or 429

## How this service works

FEC committee profile for a PAC, Super PAC or candidate committee. Give a committee id or a name query and get the committee type, party and designation plus per-cycle totals of receipts, disbursements and cash on hand, and a summary of independent expenditures it made supporting or opposing candidates. Public disclosure data for research and compliance.

## Output

Returns the committee's FEC profile including committee type (e.g. PAC, Super PAC, candidate committee), party affiliation, designation, per-election-cycle totals for receipts, disbursements, and cash on hand, plus a summary of independent expenditures the committee made supporting or opposing federal candidates — all sourced from FEC public disclosure data.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "q": {
       "type": "string",
       "description": "Committee name search query"
      },
      "committee_id": {
       "type": "string",
       "description": "FEC committee id, e.g. C00401224"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fec-committee-profile-lookup-32eab23d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
