# Congress Stock Trades API

> Congress Stock Trades API is a paid API for AI agents from api.kadec0.xyz, paid per call via x402, $0.05/call, status healthy (last checked 2026-09-14, last successful call 2026-08-22).

Returns US congressional stock trade disclosures (STOCK Act filings) filterable by politician, ticker, chamber, transaction type, and date range.

## Facts

- Endpoint: GET https://api.kadec0.xyz/v1/congress-trades
- Price: $0.05/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-14
- Last successful call: 2026-08-22
- Success rate: 100% of calls made through Zero
- Rating: 4.3 / 5 from 1 review
- Activations on Zero: 24
- Tags: x402
- Canonical page: https://www.zero.xyz/c/congress-stock-trades-api-05e0b46f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nl99ovV7r3nj1w3nOZlb9

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 congress-stock-trades-api-05e0b46f
```

Example prompt: Pull up the most recent 25 congressional stock trades for NVDA — show me both House and Senate purchases and sales disclosed this year, 2024-01-01..2024-12-31.

## When to prefer this

Use this endpoint when you need structured, filterable congressional stock trade data from STOCK Act disclosures — particularly useful for tracking specific politicians, tickers, or date ranges. Prefer this over scraping third-party sites like Quiver Quantitative or Capitol Trades when you need programmatic, per-call access with precise filters.

## Known failure modes

- Invalid ticker symbol returns empty results
- Malformed dateRange format (not YYYY-MM-DD..YYYY-MM-DD) returns 400 error
- Unknown politician name substring returns empty results
- maxItems exceeding service limit may return truncated results or 400
- Payment failure (x402) returns 402 Payment Required before data is returned

## How this service works

US congressional stock trades. Stock transactions disclosed by members of the House and Senate under the STOCK Act — politician, ticker, amount, and date.

## Output

A list of congressional stock trade records, each containing the politician's name, chamber, stock ticker, transaction type (purchase or sale), amount range, and transaction date — filtered by any supplied query parameters.

## 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": {
      "type": {
       "type": "string",
       "description": "transaction type substring e.g. purchase|sale"
      },
      "ticker": {
       "type": "string",
       "description": "stock ticker, exact"
      },
      "chamber": {
       "enum": [
        "house",
        "senate"
       ],
       "type": "string"
      },
      "maxItems": {
       "type": "string",
       "default": "50"
      },
      "dateRange": {
       "type": "string",
       "description": "YYYY-MM-DD..YYYY-MM-DD on transaction date"
      },
      "politician": {
       "type": "string",
       "description": "filer name substring"
      }
     }
    }
   },
   "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/congress-stock-trades-api-05e0b46f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.kadec0.xyz](https://www.zero.xyz/host/api.kadec0.xyz/llms.txt)
