# 2s.io US House Financial Disclosure Filings API

> 2s.io US House Financial Disclosure Filings API is a paid API for AI agents from 2s.io, paid per call via x402, $0.0012/call, status unknown (last checked 2026-09-14).

Search and filter US House members' financial disclosure filings (PTRs, annual, amendments) from 2008 to present, sourced daily from the US House Clerk.

## Facts

- Endpoint: GET https://2s.io/api/gov/congress-filings
- Price: $0.0012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-us-house-financial-disclosure-filings-api-142a106e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q7mXlvx91AW5uFZ-rxiW-

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 2s-io-us-house-financial-disclosure-filings-api-142a106e
```

Example prompt: Show me all the Periodic Transaction Reports (stock trade disclosures) that Nancy Pelosi filed in 2023, and include links to the actual documents.

## When to prefer this

Use this endpoint when you need structured, filterable access to US House members' financial disclosure filings — especially STOCK Act Periodic Transaction Reports — sourced directly from the House Clerk. Prefer this over manual document searches or scrapers when you need count aggregations, date-range filtering, or direct document links at scale. Note this covers House filings from 2008 onward; Senate coverage is partial.

## Known failure modes

- No results returned if member name substring doesn't match any known filer
- Invalid state code or date format may return empty results or an error
- Year outside 2008–present range returns no data
- Senate filings are incomplete — full Senate index not yet available
- Filing may be missing if it was just submitted and the daily refresh hasn't run yet (up to ~24-hour lag)
- Trades themselves may be up to 45 days old relative to the filing date by law

## How this service works

Track US House members' financial-disclosure filings — including Periodic Transaction Reports (PTRs), the STOCK Act filings where members must disclose their stock trades within 45 days. Defaults to PTRs; pass type=annual|candidate|amendment|all to see other disclosure kinds. Filter by member name (q), 2-letter state, filing year, or filing-date range (dateFrom/dateTo). Each result gives the member, state + district, filing type (with a readable label), the filing/disclosure date, and a direct link to the source document (docUrl). The envelope total is the full count matching your filter — so q=Pelosi or year=2026 answers 'how many PTRs did they file'. Covers 2008→present (~8,200 PTRs), refreshed daily so new filings appear within ~a day. Note: by law trades are disclosed up to 45 days after they happen — this is current-to-the-filing, not real-time. Data: US House Clerk (public domain).

## Output

Returns a paginated list of financial disclosure filings matching the filters, each with the member's name, state and district, filing type with readable label, filing/disclosure date, and a direct URL to the source document on the House Clerk's website, plus an envelope total count of all matching records.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "Smith",
   "type": "ptr",
   "year": 2023,
   "limit": 10,
   "chamber": "house"
  }
 }
}
```

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "properties": {
      "q": {
       "type": "string",
       "description": "Member name substring (e.g. \"Pelosi\")."
      },
      "type": {
       "type": "string",
       "description": "ptr (default) | annual | candidate | amendment | all."
      },
      "year": {
       "type": "integer",
       "description": "Filing year (2008+)."
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Max rows (default 25)."
      },
      "state": {
       "type": "string",
       "description": "2-letter state (e.g. CA)."
      },
      "dateTo": {
       "type": "string",
       "description": "Filing date <= YYYY-MM-DD."
      },
      "offset": {
       "type": "integer",
       "minimum": 0
      },
      "chamber": {
       "type": "string",
       "description": "house (default; complete 2008+). Senate PTR filings are partially present; full Senate index coming."
      },
      "dateFrom": {
       "type": "string",
       "description": "Filing date >= YYYY-MM-DD."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-us-house-financial-disclosure-filings-api-142a106e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
