# STOCK Act Filing Tracker — US House Periodic Transaction Reports

> STOCK Act Filing Tracker — US House Periodic Transaction Reports 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 index of STOCK Act financial disclosure filings by US House members, filterable by member name, state/district, year, and filing type, with links to official PDF documents.

## Facts

- Endpoint: POST https://x402.forgemesh.io/stock-act-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/stock-act-filing-tracker-us-house-periodic-transaction-reports-112f0c77
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ecY7dkPzXh7tOyeUSJF5W

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 stock-act-filing-tracker-us-house-periodic-transaction-reports-112f0c77 -d '<json body>'
```

Example prompt: Pull up the 2026 STOCK Act periodic transaction reports filed by any House member from Virginia — I want the filing dates and PDF links for the first 10 results.

## When to prefer this

Use this endpoint when you need to look up, search, or monitor STOCK Act periodic transaction report filings specifically for US House members, especially when you need direct links to official disclosure PDFs. Prefer this over general web search when you need structured, filterable disclosure data with document IDs and filing metadata. Best suited for agent workflows that monitor specific legislators or state delegations for new trade disclosures.

## Known failure modes

- No filings found for the given member name substring or state — returns empty filings array with matched:0
- Invalid state/district code format returns an error or empty result set
- Year parameter outside available data range returns no results
- Limit exceeding 100 is rejected per schema maximum constraint
- Member name substring too broad may return up to the limit without covering all matches

## How this service works

STOCK Act filing tracker: the index of periodic transaction reports and related financial disclosures filed by US House members, with filer name, district, filing date, and official document link. Watch a specific member for new trade filings, or scan a state delegation's disclosure activity in one call.

## Output

A JSON object containing a list of matching filings, each with filer name (first and last), filing year, filing date, filing type code and human-readable label, state/district, chamber, a document ID, and a direct PDF URL pointing to the official House Clerk disclosure portal. Also includes total matched count and returned count, plus an attribution note.

## 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/stock-act-filing-tracker-us-house-periodic-transaction-reports-112f0c77/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)
