# US House Financial Disclosure Filing Index

> US House Financial Disclosure Filing Index 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 an indexed list of US House member financial disclosure filings — periodic transaction reports, annual reports, amendments, and extensions — with filer details, filing type, date, and direct PDF links, filterable by member, state/district, type, or year.

## Facts

- Endpoint: POST https://x402.forgemesh.io/congress-trade-filings
- 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/us-house-financial-disclosure-filing-index-28e86da5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TuP-VQdvHgCZezrdVo1Hz

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 us-house-financial-disclosure-filing-index-28e86da5 -d '<json body>'
```

Example prompt: Pull all periodic transaction reports filed by House members from Texas so far in 2026 — I want to see who's been trading stocks, with PDF links to each filing.

## When to prefer this

Choose this endpoint when you need to search or enumerate US House member financial disclosure filings — especially periodic transaction (STOCK Act) reports — with direct PDF links. Prefer it over general web search when you need structured, filterable filing metadata rather than news articles about congressional trading. It covers the full spectrum of House disclosure types including annual reports, amendments, and extensions, not just trade filings.

## Known failure modes

- No filings match the given filters — returns empty filings array with matched:0
- Invalid filing_type code returns no results or an error
- year or limit out of expected range may return validation error
- Member name substring too broad returns up to the limit with many matches
- PDF URLs may be inaccessible if the House Clerk site is down

## How this service works

US House financial-disclosure filing index: every filing by members and candidates — periodic transaction reports, annual reports, amendments, extensions — with filer, state/district, filing type, date, and a direct PDF link. Filter by member, state, type, or year. Filing velocity is itself a signal: a burst of trade reports precedes the parsed rows appearing.

## Output

A JSON object containing an array of matching filings, each with the filer's last and first name, chamber, state/district code, filing year, filing date, filing type code and label, document ID, and a direct PDF URL to the disclosure document on the House Clerk's website. Also includes total matched count, number returned, and attribution string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "year": {
   "type": "integer",
   "description": "filing year, e.g. 2026"
  },
  "limit": {
   "type": "integer",
   "maximum": 100,
   "minimum": 1
  },
  "state": {
   "type": "string",
   "description": "state or district prefix, e.g. 'TX' or 'TX02'"
  },
  "member": {
   "type": "string",
   "description": "member name substring"
  },
  "filing_type": {
   "type": "string",
   "description": "filing type code, e.g. 'P' for periodic transaction report"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "filings": [
   {
    "last": "Wittman",
    "year": 2026,
    "first": "Robert J.",
    "doc_id": "20034916",
    "chamber": "house",
    "pdf_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034916.pdf",
    "filing_date": "7/10/2026",
    "filing_type": "P",
    "state_district": "VA01",
    "filing_type_label": "periodic transaction report (STOCK Act trades)"
   }
  ],
  "matched": 14,
  "returned": 5,
  "attribution": "US House Clerk financial disclosures (public domain)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-house-financial-disclosure-filing-index-28e86da5/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)
