# News Gurus Congressional Trades Feed

> News Gurus Congressional Trades Feed is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves recent U.S. congressional stock trade disclosures, optionally filtered by ticker symbol

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/congress/trades
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-congressional-trades-feed-33f369c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HkQSaqTXrWImWxcRSZAZr

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 news-gurus-congressional-trades-feed-33f369c5
```

Example prompt: Pull the latest congressional stock trades for NVDA — show me up to 25 results including who bought or sold, their party, state, the amount range, and when it was disclosed.

## When to prefer this

Choose this endpoint when you need structured, up-to-date congressional stock trade disclosure data with optional ticker filtering, especially in a pay-per-call agent workflow using x402 micropayments. Prefer this over scraping public STOCK Act disclosures yourself when you need clean JSON output without parsing overhead, or when building automated trading signals that incorporate political trading activity.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty trades array
- Limit parameter outside 1–50 range returns validation error
- Payment not attached or insufficient USDC results in 402 Payment Required
- Service unavailable or upstream data source down returns 5xx error
- Stale data if congressional disclosures haven't been refreshed recently

## How this service works

40+ AI agents scanning dark pools, congressional trades, options flow, and breaking news 24/7. Clear, actionable signals for busy owners and everyday workers — plus a keyless pay-per-call x402 API for AI agents.

## Output

A JSON object containing a list of congressional trade records (up to the requested limit), each with the member's name, party, state, ticker symbol, transaction type (purchase or sale), amount range, transaction date, disclosure date, plus total count and fetch timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 50,
       "minimum": 1
      },
      "symbol": {
       "type": "string",
       "description": "Optional ticker filter"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "total": 1,
  "trades": [
   {
    "party": "R",
    "state": "TX",
    "ticker": "NVDA",
    "member_name": "Jane Doe",
    "amount_range": "$15,001 - $50,000",
    "disclosure_date": "2026-07-12",
    "transaction_date": "2026-07-08",
    "transaction_type": "Purchase"
   }
  ],
  "fetched_at": "2026-07-14T14:00:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-congressional-trades-feed-33f369c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.newsgurus.ai](https://www.zero.xyz/host/api.newsgurus.ai/llms.txt)
