# AutoScrape Congress Financial Disclosures API

> AutoScrape Congress Financial Disclosures API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves congressional financial disclosure filings including holdings, trades, and income for US senators and representatives by member name, state, chamber, and filing type.

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/congress-financial-disclosures
- 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/autoscrape-congress-financial-disclosures-api-c9dfd57e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UiLrd8UjPGvARv-uKDtcX

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 autoscrape-congress-financial-disclosures-api-c9dfd57e
```

Example prompt: Can you pull up the most recent annual financial disclosure filings for Senator Tuberville from Alabama in the Senate — show me his holdings and any transaction summaries if available?

## When to prefer this

Use this endpoint when you need structured, searchable access to US congressional financial disclosure data — including periodic trade reports and annual holdings — without scraping the Senate or House eFD portals manually. Prefer this over general web search when you need machine-readable output with parsed holdings and transaction details for a specific member, state, or year.

## Known failure modes

- No results found if member name is misspelled or not yet filed for the requested year
- maxResults is capped at 5 per request — larger queries are not supported
- fetchTransactions may return empty arrays if the document format is not parseable
- Invalid chamber or filingType codes return errors or empty results
- Rate limiting or payment failure via x402 returns 402 status

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object with a count of matching filings and an array of results, each containing the member's name, chamber, filing type, a direct URL to the official disclosure document on the Senate or House eFD portal, and optionally parsed holdings (asset names and value ranges), transaction summaries, income, and liabilities.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "chamber": "Senate",
    "holdings": [
     {
      "value": "$1,001 - $15,000",
      "assetName": "Example holding"
     }
    ],
    "filingType": "O",
    "memberName": "Thomas H Tuberville",
    "documentUrl": "https://efdsearch.senate.gov/search/view/annual/example/"
   }
  ],
  "setupStatus": "found"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-congress-financial-disclosures-api-c9dfd57e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
