# FEC Committee Profile Lookup

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

Returns FEC committee profile data including type, party, designation, per-cycle financial totals, and independent expenditure summary for a PAC, Super PAC, or candidate committee.

## Facts

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

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-531b0583
```

Example prompt: Can you pull the FEC committee profile for ActBlue — committee ID C00401224 — and show me their committee type, party designation, and per-cycle receipts and disbursements?

## When to prefer this

Use this endpoint when you need structured FEC committee financial profile data — type, party, per-cycle totals, and independent expenditure summaries — for a known PAC, Super PAC, or candidate committee by ID or name search. Prefer this over raw FEC API access for normalized, ready-to-use JSON without parsing FEC's complex multi-endpoint structure.

## Known failure modes

- Committee not found for given committee_id — returns empty or 404-style response
- Ambiguous name query matches multiple committees — may return first match or list
- FEC data may lag actual filings by days or weeks
- Invalid committee_id format returns an error
- No independent expenditure data available for newly formed committees

## 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-cycle financial totals (receipts, disbursements, cash on hand), and a summary of independent expenditures made supporting or opposing federal candidates. Data sourced from FEC public disclosure filings.

## 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-531b0583/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
