quiverquant.com APIquiverquant.com ↗
Access U.S. Congress trades, insider transactions, fund performance rankings, politician profiles, PAC donors, and financial news via the Quiver Quantitative API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/f355d19f-97bf-40b8-9a74-0d6d5df7debf/get_congress_trades' \ -H 'X-API-Key: $PARSE_API_KEY'
Get recent U.S. Congress stock trades dashboard data. Returns the latest disclosed trades by members of Congress.
No input parameters required.
{
"type": "object",
"fields": {
"count": "integer total number of trades returned",
"trades": "array of trade objects with ticker, company, transaction, amount, politician, chamber, party, filed, traded, and trade_id"
},
"sample": {
"data": {
"count": 300,
"trades": [
{
"filed": "2026-05-06 00:00:00",
"party": "D",
"amount": "$1,001 - $15,000",
"ticker": "BRO",
"traded": "2026-04-17 00:00:00",
"chamber": "House",
"company": "BROWN & BROWN, INC. COMMON STOCK",
"trade_id": "House-M001232-251",
"politician": "April McClain Delaney",
"transaction": "Sale"
}
]
},
"status": "success"
}
}About the quiverquant.com API
The Quiver Quantitative API exposes 6 endpoints covering disclosed U.S. Congress stock trades, corporate insider transactions, institutional fund performance from 13-F filings, politician donor and opposition data, and a financial news feed. The get_congress_trades endpoint returns trade objects with ticker, politician name, chamber, party, and transaction amounts. All endpoints return structured JSON with explicit counts and typed fields.
Congress and Politician Trade Data
The get_congress_trades endpoint returns the most recent disclosed trades from members of Congress, each record including ticker, company, transaction type, amount, politician, chamber, party, filed date, traded date, and a trade_id. For deeper historical coverage on a single legislator, get_politician_trades accepts a slug parameter in the format firstname-lastname-BioguideID (e.g., nancy-pelosi-P000197) and returns all of that politician's disclosed trades alongside a profile object.
Politician Profile and Donor Intelligence
get_politician_profiles_tabs accepts a bioguide_id and returns three data sets: a politician_donors array of PAC contribution details, an opponents array, and a supporters array. This lets you cross-reference a legislator's trading activity against the political and financial interests behind their campaign.
Insider Trades and Fund Performance
get_insider_trades surfaces SEC-filed transactions by corporate executives, with fields covering ticker, name, title, transaction, value, shares, price, traded, and filed. get_fund_perfs pulls institutional fund rankings derived from 13-F filings, returning each fund's name, return percentage, holdings count, aum in USD, and filing date.
News Feed
get_news_feed returns the Quiver Quantitative news feed as an array of articles, each with a title, path (full URL), meta timestamp, and preview excerpt. It pairs naturally with the trade and fund endpoints for correlating news events with position disclosures.
- Screen Congress trades by ticker to identify which legislators hold or recently transacted a specific stock
- Build a politician stock-trading tracker using trade history from
get_politician_tradeswith filed and traded dates - Map PAC donor networks to trading activity by combining
get_politician_profile_tabsdonor data withget_congress_trades - Rank institutional funds by return performance using
aumandreturnfields fromget_fund_perfs - Monitor SEC insider purchases and sales in real time using
get_insider_tradesfields includingshares,price, andvalue - Correlate financial news timestamps from
get_news_feedwith recent insider or Congress trade filings - Identify political opposition and support networks for a legislator using the
opponentsandsupportersarrays
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Quiver Quantitative have an official developer API?+
What does `get_politician_trades` return beyond a list of trades?+
trades array — each record containing ticker, transaction, filed, traded, and description — the endpoint also returns a profile object with the politician's name and metadata. The slug input must combine the politician's name and their Bioguide ID, for example nancy-pelosi-P000197.Does the API support filtering trades by date range, party, or ticker?+
get_congress_trades and get_insider_trades endpoints return full dashboard snapshots without filter parameters. You can fork this API on Parse and revise it to add query-level filtering if your use case requires narrower result sets.Are historical 13-F filings or time-series fund performance data available?+
get_fund_perfs endpoint returns a single ranked snapshot per fund, including one date field and one return percentage. Multi-period historical filing data is not currently exposed. You can fork the API on Parse and revise it to add endpoints targeting historical 13-F periods.