# SmartMoney Congress PTR Global Overview

> SmartMoney Congress PTR 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-13).

Returns global US House Periodic Transaction Report (PTR) activity across all stock-backed trades, supporting overview, latest disclosures, buy/sell breakdowns, active tickers, active members, and configurable time windows.

## Facts

- Endpoint: GET https://x402.smartmoney.market/congress
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-smartmoney-market-52f566fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y14kfEB7-1pAZjMuxHvM7

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-52f566fd
```

Example prompt: Pull the latest congressional stock trading activity from SmartMoney — show me an overview of the most active tickers and members over the past 30 days, limit to 50 results.

## When to prefer this

Use this endpoint when you need a global, cross-member view of all House PTR stock trading activity rather than activity for a single ticker or member. Prefer this over sibling endpoints when you want overview dashboards, trend analysis across the full Congress universe, or want to discover which tickers and members are most active without knowing a specific symbol upfront.

## Known failure modes

- Invalid 'days' value outside 1–365 range returns a validation error
- Invalid 'limit' value outside 1–500 range returns a validation error
- Unknown 'view' parameter value may return empty or error response
- Payment not provided or insufficient USDC balance triggers 402 Payment Required
- Rate limiting or downstream data unavailability may return 503 or timeout

## 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 PTR transaction data including buy/sell counts, active tickers, active Congress members, filing dates, and trade details — scoped to the requested view, time window, and result limit.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "days": 30,
   "view": "overview",
   "limit": 50
  }
 }
}
```

## 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-52f566fd/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)
