/v1/tradesPaginated list of recent stock trades across all politicians. Returns transaction type, ticker, amount range, trade date, and filing date.
Query parameters
limit — max results (default 50, max 200)cursor — pagination tokenticker — filter by symbol (e.g. NVDA)type — buy | sellchamber — house | senate | ogesince — ISO date (disclosure filed after)
Example response
{
"data": [
{
"id": "tx_8f2a1b",
"politicianId": "P000197",
"politicianName": "Nancy Pelosi",
"politicianSlug": "nancy-pelosi",
"ticker": "NVDA",
"type": "buy",
"amountRange": "$1,000,001 - $5,000,000",
"transactionDate": "2026-06-20",
"filingDate": "2026-07-03",
"chamber": "house"
}
],
"meta": { "cursor": "eyJpZCI6...", "hasMore": true }
}






