# SmartMoney Congress Ticker Activity

> SmartMoney Congress Ticker Activity 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 specific stock ticker, including buy/sell counts, filing dates, trade dates, active members, and recent disclosed trades.

## Facts

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

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

Example prompt: Pull up the congressional trading activity for NVDA — I want to see the buy/sell counts, which House members have been active, and the most recent disclosed trades from the US House Periodic Transaction Reports.

## When to prefer this

Use this endpoint when you need Congressional trading signals for a specific stock ticker, particularly buy/sell counts and individual member activity from US House PTR filings. Prefer this over the global Congress endpoint when you already know the ticker and want per-symbol aggregation rather than a broad market overview.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty results or error
- Ticker not covered in SmartMoney's universe returns no data
- Payment failure (x402 protocol) blocks the request
- Rate limiting or quota exceeded returns 402 or 429 error
- Stale data if Congressional disclosures have not been recently refreshed

## 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 aggregated US House PTR data for the specified ticker: total buy and sell counts, filing and trade dates, names of active House members who traded the stock, and details of recently disclosed individual trades.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker symbol to analyze, for example NVDA, AAPL, or MSFT."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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-cc3c0609/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)
