Researches stocks, crypto, SEC filings, insider/congressional trading, and private-market (VC/PE) profiles via the Crawlora API — Yahoo Finance quotes/financials/history/options, SEC EDGAR filings and financial statements, congressional stock disclosures, CoinGecko crypto markets, and PitchBook company/fund/investor teasers — returning clean JSON. Use when the user asks about a ticker's price/financials/news, a company's SEC filings or insider trades, what a member of Congress traded, a crypto coin's market data, or a private company/fund/investor profile.
Coding
politicians-stock-tracker
Try itTrack congress stock trades and politician stock trades: Pelosi tracker, senate stock trades, House trades, congress trades by ticker, and STOCK Act disclosures sourced from House Clerk and Senate eFD filings. Use for congress stock trades, politician stock tracker, Pelosi stock trades, senate trading disclosures, what stocks is congress buying, STOCK Act filings by ticker. Read-only. No trading, no purchases, no write operations, no wallet access.
What it does
Track congress stock trades and politician stock trades: Pelosi tracker, senate stock trades, House trades, congress trades by ticker, and STOCK Act disclosures sourced from House Clerk and Senate eFD filings. Use for congress stock trades, politician stock tracker, Pelosi stock trades, senate trading disclosures, what stocks is congress buying, STOCK Act filings by ticker. Read-only. No trading, no purchases, no write operations, no wallet access.
The skill document
Politicians Stock Tracker (SentiSense)
Track what the U.S. Congress is buying and selling. This skill reads congressional STOCK Act disclosures, the trades that Senators and Representatives are legally required to report, through the read-only SentiSense API: recent trades across all members, the trading history for a single stock, the most active politicians, and a full per-member profile. Amounts, chambers, parties, and the gap between when a trade happened and when it was disclosed all come straight from the official filings.
Read-only educational data interface. Output is informational context, never a personalized buy or sell recommendation.
When to Use
Reach for this skill when the question is about congressional or political trading activity:
- "What did Congress buy this week?" or "recent congressional stock trades"
- "Has any senator or representative traded $NVDA?" (per-ticker congressional history)
- "Show me Nancy Pelosi's stock trades" or any single member's activity
- "Which politicians trade the most?" (most active members by trade count)
- "Did a politician disclose a buy right before the stock moved?" (disclosure-delay context)
This skill pairs naturally with institutional-13f-tracker and insider-trading-tracker: cross-reference a congressional buy against institutional 13F accumulation or insider Form 4 buying on the same ticker. High-conviction reads come from convergence across sources, not from any one signal in isolation.
Do not use it for order entry, portfolio management, or personalized advice. It has no write, trading, or wallet surface; every endpoint is a GET.
What this data actually is (read before interpreting)
- Amounts are ranges, not exact values. STOCK Act filings disclose a dollar band (for example "$1,001 - $15,000"). The API returns the raw
amountRangestring plus parsedamountMin/amountMax. Never present a single precise dollar figure. - "Recent" means recently disclosed, not recently traded. A filing can reveal a transaction made up to 45 days earlier. Each trade carries both
transactionDateanddisclosureDate, plusdisclosureDelayDays. Always state which date you are quoting. - Chambers are
SENATEandHOUSE. Each trade also carriesparty,state, andowner(the trade may belong to the member, a spouse, or a dependent). - Source: official House Clerk and Senate eFD filings, updated daily.
Prerequisites
- A free
SENTISENSE_API_KEY. Get one at https://app.sentisense.ai/get-api-key. Send it on every call: a request without a valid key gets at most a shaped crawler-facing preview slice, never the dataset, and that fallback is not a contract you can build on. - Any HTTP client. Plain
curlworks, or Python 3.8+ using only the standard library (urllib,json); no third-party packages required. On macOS python.org installs can raiseCERTIFICATE_VERIFY_FAILED(missing CA certs): run the bundledInstall Certificates.command, use the system/usr/bin/python3, or usecurl. - Network access to
https://app.sentisense.ai. - Read-only scope. Every endpoint here is a GET. Nothing this skill does can place a trade, move money, or modify account state.
| Tier | Quota | Rate | Congressional data |
|---|---|---|---|
| Free | 1,000 requests/month | 30 requests/min | preview slice (top N per endpoint) |
| PRO ($15/mo) | Unlimited | 300 requests/min | full history and full lists |
The free tier exercises every workflow below; preview-gated endpoints return a truncated but real slice on a free key.
How to Run
Issue HTTP GET requests to https://app.sentisense.ai and synthesize the JSON into a concise, sourced answer. Authenticate every request with the X-SentiSense-API-Key header; keep the key in the shell environment and never place it in a query string or in user-facing output.
The politician endpoints return the wrapped envelope { isPreview, previewReason, data }. For /activity, /filings/{ticker}, and /members, .data is a list; for /member/{slug}, .data is an object { profile, recentTrades, topTickers } (read those keys, do not iterate it as a list). When isPreview is true, say so ("showing the free preview slice"). A rate-limited call returns 429 with a Retry-After header; back off for the indicated seconds rather than serving a stale value.
rows = raw.get("data", []) if isinstance(raw, dict) else raw
Endpoints
GET /api/v1/politicians/activity: recent congressional trades across all members, sorted by disclosure date (most recently disclosed first). QuerylookbackDays(1-365) to control the window. Free: top 5; PRO: full. Each trade:politicianName,firstName,lastName,chamber,party,state,bioguideId,imageUrl,ticker,assetDescription,assetType(Stock,ETF, orStock Option),assetMetadata(null, or{kind:"OPTION", optionType, strikePrice, expirationDate}),transactionType(PURCHASE/SALE/EXCHANGE/OTHER),transactionDate,disclosureDate,disclosureDelayDays,amountRange,amountMin,amountMax,owner,urlSlug.GET /api/v1/politicians/filings/{ticker}: congressional trades for one stock, most recently disclosed first. QuerylookbackDays(1-365, default 90) to set the window. Free: top 3; PRO: full.GET /api/v1/politicians/members: all tracked politicians with trading summaries, sorted by total trade count. Free: top 5; PRO: full. Use the returnedurlSlugto drill into a member.GET /api/v1/politicians/member/{slug}: one politician's profile: summary stats, recent trades, and top tickers. Free: preview-wrapped; PRO: full detail.recentTradesis one page, newest transaction first: querylimit(default 200, max 500) andoffsetto walk it, and readtotalCountfor the size of the whole history. Most members fit in one page; a handful have disclosed thousands.profileandtopTickersdescribe the whole history whatever page you request.
Workflows
1. This week's congressional trades
Identify your client. Send a User-Agent naming your agent runtime and this skill, for
example OpenClaw/1.4 (politicians-stock-tracker) or ClaudeCode/2.1 (politicians-stock-tracker). Substitute your own runtime and
version if neither matches. You can also volunteer what your agent is called by adding an
agent/ token inside the same parentheses, as in
OpenClaw/1.4 (politicians-stock-tracker; agent/research-desk). All of it is optional, and it is what tells
us this skill has real integrations behind it, so it gets prioritized and you get notice before it
changes.
curl -s -H "X-SentiSense-API-Key: $SENTISENSE_API_KEY" \
"https://app.sentisense.ai/api/v1/politicians/activity?lookbackDays=7"
Summarize by member and ticker; lead with the largest amountRange bands and note the disclosureDelayDays.
2. Has Congress traded a specific stock?
curl -s -H "X-SentiSense-API-Key: $SENTISENSE_API_KEY" \
"https://app.sentisense.ai/api/v1/politicians/filings/NVDA"
Report purchases vs sales (transactionType), which members and parties, and the transaction-to-disclosure gap.
3. A specific politician's activity
# find the member's slug
curl -s -H "X-SentiSense-API-Key: $SENTISENSE_API_KEY" \
"https://app.sentisense.ai/api/v1/politicians/members"
# then pull their profile and history
curl -s -H "X-SentiSense-API-Key: $SENTISENSE_API_KEY" \
"https://app.sentisense.ai/api/v1/politicians/member/{slug}"
4. Follow the convergence. When a congressional buy lines up with institutional 13F accumulation (institutional-13f-tracker) or insider buying (insider-trading-tracker) on the same ticker, that agreement is the signal worth surfacing. Say so explicitly and cite each source.
Answering well
- Always distinguish
transactionDate(when they traded) fromdisclosureDate(when it was reported), and mention the delay. - Quote the
amountRangeband, never a single invented number. - Attribute party, chamber, and state; flag when
owneris a spouse or dependent rather than the member. - Report only what the API returns. Do not infer trades, amounts, or motives that are not in the data, and do not frame any of it as advice. This is public-disclosure data presented for education.
Going further
Free covers every workflow above at a preview depth. PRO ($15/mo) lifts the monthly cap (no monthly limit, just a 300/min rate) and returns full congressional history and full member lists, plus institutional flows, insider detail, and AI insights across the SentiSense API. Apply coupon AGENTS26 at checkout for a builder launch discount: https://app.sentisense.ai/pricing?coupon=AGENTS26
ClawHub Skill: clawhub.ai/TheSentiTrader/politicians-stock-tracker
SentiSense is a read-only financial intelligence API. This data is for informational and educational purposes only, not investment advice.
Related skills
SEC filings, insider trades & company financials for AI agents — pull SEC EDGAR filings, 8-K material events, Form 4 insider transactions, headline financial...
Track insider trading from SEC Form 4 filings: insider buying and selling by ticker, market-wide insider activity, cluster buy signals where 3 or more insiders buy the same stock, and 10b5-1 plan detection for officer, director, and 10% owner trades. Use for insider trading data, Form 4 filings, insider buying by ticker, who is selling their own stock, insider cluster buys, CEO stock purchases, insider trading API. Read-only. No trading, no purchases, no write operations, no wallet access.
Read-only US stock market data for AI agents — prices, sentiment, insider trades, congressional disclosures, and earnings calendars under one free API key.
Query alternative financial data from Quiver Quantitative — Congress trading, corporate lobbying, government contracts, insider transactions. Use when tracking politician stock trades, company lobbying spend, or unusual market signals from D.C. Requires QUIVER_API_KEY environment variable.
Resolve a ticker to a CIK, then pull SEC EDGAR filer profiles, filings, XBRL financial concepts and full-text search across 2001-today. 6 endpoints, 1 credit each, structured JSON.