# Congressional Stock Trades (Senate)

> Congressional Stock Trades (Senate) is a paid API for AI agents from www.x402financialdata.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns the most recent US Senate stock trade disclosures (STOCK Act periodic transaction reports) for a given ticker symbol, sourced from official Senate eFD filings.

## Facts

- Endpoint: GET https://www.x402financialdata.com/congress-trades/:ticker
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/congressional-stock-trades-senate-bdd3b0f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2bYLppXjya8lWkJ090tac

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 congressional-stock-trades-senate-bdd3b0f7
```

Example prompt: Pull the last 10 Senate stock trade disclosures for NVDA from the STOCK Act filings — I want to see which senators have been buying or selling Nvidia recently.

## When to prefer this

Choose this endpoint when you specifically need US Senate STOCK Act trade disclosures for a given stock ticker. It is the authoritative source for Senate-only congressional trading data sourced directly from efdsearch.senate.gov. Use it for political sentiment analysis, regulatory monitoring, or tracking whether senators with committee oversight are trading relevant stocks. Note: this does NOT include House of Representatives disclosures.

## Known failure modes

- Invalid or unrecognized ticker returns empty list rather than an error
- Ticker with no disclosed Senate trades returns 200 with empty array
- House of Representatives trades are not included — Senate only
- Disclosures may lag up to 45 days behind actual trades, so very recent trades may be absent
- Limit parameter exceeding 25 is capped at 25
- Payment failure or insufficient USDC balance returns 402

## How this service works

SENATE ONLY -- does not include the US House of Representatives. Most recent US Senate stock trade disclosures for a ticker (STOCK Act periodic transaction reports), sourced from official efdsearch.senate.gov filings. Disclosures are legally allowed up to 45 days after the trade, so this is not real-time. Optional 'limit' caps results (default 10, max 25). A ticker with no disclosed Senate trades returns 200 with an empty list, not an error. $0.05/call.

## Output

A list of up to 25 Senate STOCK Act periodic transaction report disclosures for the requested ticker, each including the senator's name, transaction date, filing date, transaction type (buy/sell), and disclosed dollar amount range. Returns an empty list (not an error) if no Senate trades have been disclosed for the ticker.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US-listed stock ticker symbol, e.g. NVDA"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max transactions to return, default 10, max 25."
      }
     }
    }
   },
   "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/congressional-stock-trades-senate-bdd3b0f7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.x402financialdata.com](https://www.zero.xyz/host/www.x402financialdata.com/llms.txt)
