Access senator trades and congressional stock activity with data updated as promptly as possible through our API.
The Senator Stocks API allows users to track real-time congressional trades, providing transparency on stock movements among government officials.
https://congresswatchlist.com
API requests require authentication using your API key. Include it in the request header:
Authorization: ApiKey YOUR_API_KEY
GET /api/congress-members/
{ "id": 1, "first_name": "John", "last_name": "Doe", "party": "Democrat", "description": "Serving in Congress since 2010.", "wiki_url": "https://en.wikipedia.org/wiki/John_Doe" }
To ensure fair use, our API enforces the following limits:
GET /api/endpoint/ - Maximum of 10 requests per minute
GET /api/endpoint/ - Maximum of 100 requests per day
GET /api/trades/
{ "id": 1, "congress_member": { "id": 1, "first_name": "John", "last_name": "Doe" }, "stock_name": "Tesla Inc.", "ticker_symbol": "TSLA", "trade_type": "Purchase", "trade_amount": "10000.00", "trade_date": "2025-02-01" }