---
name: x402.smartmoney.market
description: x402.smartmoney.market provides structured feeds of U.S. equity market intelligence derived from public regulatory disclosures: SEC Form 4 insider transactions and U.S. congressional stock trade filings. It also surfaces institutional 13-F fund data including AUM, top holdings, and quarter-over-quarter portfolio changes. All data is aggregated and summarized over configurable time windows rather than delivered as raw filings.
host: x402.smartmoney.market
---

# x402.smartmoney.market

This host serves agents that need signals from informed or regulated market participants — corporate insiders, U.S. Congress members, and institutional 13-F filers — as a proxy for smart-money activity in U.S. equities. It covers three distinct disclosure regimes (SEC Form 4, STOCK Act congressional disclosures, and 13-F quarterly filings) and returns pre-aggregated summaries with counts, dollar values, and per-ticker breakdowns. It does not provide price data, earnings, or technical indicators.

## When to use this host

Use this host when an agent needs signals derived from regulatory disclosure data — SEC Form 4 insider transactions, congressional STOCK Act filings, or 13-F institutional holdings — for U.S. equities. It is well-suited for screening tickers with unusual insider or congressional buying activity, monitoring institutional fund positioning, or building smart-money overlays. Do not use this host for real-time or historical price data, OHLCV candles, earnings, or technical indicators — use a dedicated market data API instead. The insider feeds cover only a curated universe of approximately 523 tracked stocks, so it is not suitable for arbitrary ticker lookups outside that universe. For full raw SEC EDGAR filings or non-U.S. legislative disclosure data, this host is not appropriate.

## Capabilities

### Congressional Trade Disclosures

Retrieves and summarizes U.S. congressional stock trade filings under the STOCK Act, including buy/sell counts, active members, filing lag, and per-trade detail over a configurable window.

- **`fetch-congress-trades`** — Returns recent U.S. congressional stock trade disclosures including buy/sell transactions, filing metadata, member details, and aggregate summary statistics for a configurable time window.
- **`fetch-congress-smart-money-feed`** — Returns a paginated feed of U.S. congressional stock trades with summary statistics, buy/sell counts, active members, and per-trade filing details for a configurable time window.

### Corporate Insider Activity

Surfaces SEC Form 4 open-market insider transactions across a tracked universe of U.S. equities, with net buyer/seller signals, role breakdowns, and per-ticker dollar values.

- **`fetch-insider-activity`** — Returns SEC Form 4 insider transaction summaries for a curated stock universe, including open-market buys, sells, 10% owner activity, and per-ticker breakdowns over a configurable day window.
- **`fetch-insider-smart-money-feed`** — Returns SEC Form 4 insider transaction signals for tracked US equities, including buy/sell counts, net values, active tickers, and per-insider role breakdowns over a configurable day window.

### Institutional 13-F Fund Intelligence

Lists tracked institutional fund managers with their latest AUM, top 5 holdings, filing quarter, and quarter-over-quarter portfolio change for cross-fund comparison.

- **`fetch-13f-funds-overview`** — Returns a list of tracked 13-F institutional funds with manager names, latest AUM, reporting quarter, top 5 holdings, and quarter-over-quarter portfolio change percentage.

## Workflows

### Converging Smart Money Signal Check

*Use when an agent needs to identify U.S. equity tickers where both corporate insiders and Congress members are transacting in the same direction over a shared time window, suggesting potential convergence of informed buying or selling.*

1. **`fetch-insider-smart-money-feed`** — Retrieve active tickers with net insider buy or sell signals and dollar values over the target window.
2. **`fetch-congress-smart-money-feed`** — Retrieve active tickers from congressional trades over the same window and compare against insider-active tickers to find overlap.

### Institutional Context for Insider Signals

*Use when an agent needs to contextualize insider buying signals by checking whether institutional 13-F funds hold significant positions in the same tickers.*

1. **`fetch-insider-activity`** — Identify tickers with notable open-market insider buying activity and dollar values.
2. **`fetch-13f-funds-overview`** — Review institutional fund top holdings to determine whether 13-F filers have existing or overlapping exposure to those tickers.

## Skill reference

### `fetch-congress-trades`

**Congress Alpha Feed** — Returns recent U.S. congressional stock trade disclosures including buy/sell transactions, filing metadata, member details, and aggregate summary statistics for a configurable time window.

*Use when:* Use when an agent needs to retrieve recent congressional stock trading activity, including individual trade records with ticker, member name, chamber, transaction type, amount range, and filing lag, or aggregate counts of buys, sells, and active members.

*Not for:* Do not use for real-time stock price data or general market quotes; use a market data API instead. Not suitable for non-U.S. legislative bodies or insider trading data outside congressional disclosures.

**Inputs:**

- `days` (integer) — Lookback window in days for trade data. Defaults to 30 based on observed response.
- `view` (string) — Data view to return. Observed values include overview, latest, buys, sells, tickers, members.
- `limit` (integer) — Maximum number of records to return in the latest trades list. Observed default is 20, UI limit is 100.

**Returns:** Returns enabled status, a 30-day summary with 48 trades across 11 active members and 42 tickers, counts of buys/sells, pagination links, and an array of up to 20 individual congressional trade disclosure records.

**Example:** `GET https://x402.smartmoney.market/congress?days=30&view=overview&limit=20`

---

### `fetch-insider-activity`

**Smartmoney Insiders** — Returns SEC Form 4 insider transaction summaries for a curated stock universe, including open-market buys, sells, 10% owner activity, and per-ticker breakdowns over a configurable day window.

*Use when:* Use when an agent needs recent insider buying or selling signals from SEC Form 4 filings, including transaction counts, dollar values, active insider roles, and ticker-level detail for a screened universe of stocks.

*Not for:* Do not use for real-time price feeds, earnings data, or insider activity outside the Smartmoney-tracked universe of ~523 stocks. Not suitable for full SEC EDGAR filings or historical data beyond the supported window.

**Inputs:**

- `days` (integer) — Lookback window in days for insider activity. Defaults to 7 in overview mode; links in response suggest 30 for other views.
- `view` (string) — Filter slice to return. Known values: overview, latest, buys, sells, ten_pct.
- `limit` (integer) — Number of ticker-level results to return. Default 20, max 500, UI max 200.

**Returns:** Returns aggregate insider transaction stats (222 transactions, buy/sell counts and USD values, role breakdown) plus an array of per-insider ticker entries with transaction dates, share counts, prices, and net seller/buyer signals.

**Example:** `GET https://x402.smartmoney.market/insiders?view=latest&days=30&limit=20`

---

### `fetch-13f-funds-overview`

**13-F Funds Overview** — Returns a list of tracked 13-F institutional funds with manager names, latest AUM, reporting quarter, top 5 holdings, and quarter-over-quarter portfolio change percentage.

*Use when:* Use when an agent needs to discover or monitor institutional 13-F fund managers, browse their latest AUM, identify top holdings, or compare quarter-over-quarter portfolio movement across multiple funds.

*Not for:* Do not use for real-time price feeds or individual stock data; use a market data API instead. Not suitable for retrieving detailed position-level holdings for a single fund — use a fund-specific endpoint if available.

**Returns:** Returns a JSON array of 13-F fund objects, each containing fund name, manager, AUM, reporting quarter, top 5 tickers, QoQ percentage change, and metadata flags such as has_ai_analysis and confidential_treatment.

**Example:** `GET https://x402.smartmoney.market/funds`

---

### `fetch-insider-smart-money-feed`

**Insider Smart Money Feed** — Returns SEC Form 4 insider transaction signals for tracked US equities, including buy/sell counts, net values, active tickers, and per-insider role breakdowns over a configurable day window.

*Use when:* Use when an agent needs to identify recent insider buying or selling activity across tracked US stocks, surface net_seller/net_buyer signals, or retrieve a ranked list of active tickers with insider transaction counts and dollar values.

*Not for:* Do not use for real-time price quotes or technical chart data; use a market data API instead. Not suitable for non-US equities or crypto insider activity.

**Inputs:**

- `days` (integer) — Lookback window in days for insider transactions. Reflected as window_days in the response.
- `view` (string) — Data slice to return. Known values from response links: overview, latest, buys, sells, ten_pct.
- `limit` (integer) — Maximum number of records to return. Response shows default 20, max 500, UI max 200.

**Returns:** Returns an overview object with 523 tracked stocks, 40 active tickers, aggregate buy/sell/net USD values, role breakdowns, slice counts, navigation links, and a latest array of per-insider Form 4 transaction records each tagged with a net_seller or net_buyer signal.

**Example:** `GET https://x402.smartmoney.market/api/insiders?days=7&view=overview&limit=20`

---

### `fetch-congress-smart-money-feed`

**Congress Smart Money Feed** — Returns a paginated feed of U.S. congressional stock trades with summary statistics, buy/sell counts, active members, and per-trade filing details for a configurable time window.

*Use when:* Use when an agent needs recent congressional stock trading activity, including trade counts, buy/sell breakdowns, active tickers, member names, transaction dates, filing lags, and source disclosure documents.

*Not for:* Do not use for real-time market prices or general stock quotes; use a market data API instead. Not suitable for non-U.S. legislative bodies or insider trading data outside congressional disclosures.

**Inputs:**

- `days` (integer) — Lookback window in days for filtering trades. Defaults to 30 for overview, 90 for other views.
- `view` (string) — Data view to return. One of: overview, latest, buys, sells, tickers, members.
- `limit` (integer) — Maximum number of records to return in the response array.

**Returns:** Returns enabled status, a 30-day summary with 48 trades (20 buys, 28 sells, 11 active members, 42 tickers), counts, navigation links, and a latest array of individual trade records with member, ticker, amount, and source disclosure details.

**Example:** `GET https://x402.smartmoney.market/api/congress?days=30&view=overview&limit=20`

---
