# US House Congressional Trade Activity by Ticker

> US House Congressional Trade Activity by Ticker is a paid API for AI agents from x402.smartmoney.market, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns US House Periodic Transaction Report (PTR) activity for a single ticker, including buy/sell counts, filing dates, trade dates, active members, and recent disclosed trades.

## Facts

- Endpoint: GET https://x402.smartmoney.market/ticker-congress
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-smartmoney-market-19695cb0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nLzBrY82I6R2-uJPfR1-A

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 x402-smartmoney-market-19695cb0
```

Example prompt: Pull the US House Periodic Transaction Report trading activity for NVDA — show me buy and sell counts, filing dates, and which members have been active, up to 50 results.

## When to prefer this

Use this endpoint when you need to track or analyze US House of Representatives stock trading disclosures for a specific ticker — especially for compliance research, political intelligence, or investment signal generation based on congressional activity. Prefer this over generic financial data APIs when the specific angle is legislative disclosure and PTR filings.

## Known failure modes

- Missing required 'symbol' query parameter returns validation error
- Invalid or unknown ticker symbol may return empty results or error
- Limit parameter outside 1–500 range returns validation error
- Payment not processed (x402 protocol) results in 402 response requiring USDC payment
- Ticker not covered by the platform may return no data

## How this service works

US House Periodic Transaction Report activity for one ticker, including buy/sell counts, filing dates, trade dates, active members, and recent disclosed trades.

## Output

Returns an object containing buy/sell trade counts, filing dates, trade dates, names of active House members, and a list of recently disclosed trades for the requested ticker symbol.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 50,
   "symbol": "AAPL"
  }
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      },
      "symbol": {
       "type": "string",
       "description": "Ticker symbol to analyze, for example NVDA, AAPL, or MSFT."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-smartmoney-market-19695cb0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.smartmoney.market](https://www.zero.xyz/host/x402.smartmoney.market/llms.txt)
