# Congress Stock Trades Feed

> Congress Stock Trades Feed is a paid API for AI agents from cycle-angela-lamp-hamburg.trycloudflare.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns the latest US Senate and House member stock transactions from public disclosures as a JSON array, including member name, ticker, transaction type, amount range, and disclosure date.

## Facts

- Endpoint: GET https://cycle-angela-lamp-hamburg.trycloudflare.com/api/us/congress-trades
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/congress-stock-trades-feed-764d44f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yP358qKJkTtw6YpsGzPEs

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-feed-764d44f0
```

Example prompt: Can you pull the latest congressional stock trades and show me which senators and representatives have been buying or selling recently, including the tickers and amounts disclosed?

## When to prefer this

Use this endpoint when you need a ready-made feed of recent congressional stock disclosures without having to scrape SEC EDGAR or Congress.gov yourself. Ideal for monitoring politician trading patterns, building alerts on specific tickers traded by congress members, or cross-referencing legislative activity with trading behavior. Best when you need a quick JSON snapshot of the latest ~100 trades rather than historical data or filtering by specific member.

## Known failure modes

- Payment not processed (x402 payment required) — returns 402 with payment details
- No recent disclosures available — may return empty trades array
- Upstream disclosure data source unavailable — may return stale or error response
- Rate limiting or throttling — returns 429 or similar error
- Cloudflare tunnel downtime — endpoint may be temporarily unreachable

## How this service works

Congressional stock trades: latest US Senate and House member stock transactions from public disclosures, member name, ticker, transaction type buy sell, amount range, disclosure date. JSON array. Politician trading feed.

## Output

A JSON object containing a 'trades' array of up to 100 recent US Senate and House stock transaction records, each with fields for trade date, transaction type (buy/sell), amount range (e.g. '$1,001-$15,000'), member name, ticker symbol, and disclosure date, plus a 'generated_at' Unix timestamp indicating when the payload was built.

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trades": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "date": {
      "type": "string"
     },
     "type": {
      "type": "string"
     },
     "amount": {
      "type": "string"
     },
     "member": {
      "type": "string"
     },
     "ticker": {
      "type": "string"
     },
     "disclosed": {
      "type": "string"
     }
    }
   },
   "description": "latest 100 US Senate stock transactions"
  },
  "generated_at": {
   "type": "integer",
   "description": "unix seconds when payload was built"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/congress-stock-trades-feed-764d44f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cycle-angela-lamp-hamburg.trycloudflare.com](https://www.zero.xyz/host/cycle-angela-lamp-hamburg.trycloudflare.com/llms.txt)
