# SmartMoney US House Congress Stock Trade Activity (Global Overview)

> SmartMoney US House Congress Stock Trade Activity (Global Overview) 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 global US House Periodic Transaction Report (PTR) activity for stock-backed trades, including overview stats, latest disclosures, top buys/sells, active tickers, and active members.

## Facts

- Endpoint: GET https://x402.smartmoney.market/api/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-a4d0dc68
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_32a3g4vr9Y6E8iXoInNg8

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-a4d0dc68
```

Example prompt: Pull up the SmartMoney global House PTR overview for the last 30 days — show me the top 20 active tickers and which members have been trading the most.

## When to prefer this

Use this endpoint when you need a broad, global view of all House congressional stock trading activity across all members and tickers — rather than activity for a single specific ticker or member. Prefer this over the single-ticker House PTR endpoint when doing market-wide or policy-wide research.

## Known failure modes

- Invalid 'days' value outside 1-365 range returns validation error
- Invalid 'limit' value outside 1-500 range returns validation error
- Unknown 'view' parameter may return empty or error response
- Payment of 0.01 USDC not fulfilled returns 402 Payment Required
- No data available for specified time window returns empty result set

## How this service works

Global US House Periodic Transaction Report activity for stock-backed trades. Supports overview, latest disclosures, focused buys/sells, active tickers, active members, days, view, and limit.

## Output

Returns aggregated US House Periodic Transaction Report data including disclosure counts, top traded tickers, most active members, and buy/sell breakdowns over the specified lookback window.

## 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",
     "properties": {
      "days": {
       "type": "integer",
       "maximum": 365,
       "minimum": 1
      },
      "view": {
       "type": "string"
      },
      "limit": {
       "type": "integer",
       "maximum": 500,
       "minimum": 1
      }
     }
    }
   },
   "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-a4d0dc68/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)
