Description
Returns all tracked senators and ex-members with aggregate trading stats: total trade count, trade score, and date of last disclosed trade.
Query parameters
None.
Response
An array of member objects:
| Field | Type | Description |
|---|---|---|
| id | integer | Internal identifier for the senator. |
| name | string | Full name. |
| chamber | string | Always Senate for this endpoint. |
| party | string | Party affiliation. |
| trade_count | integer | Total number of parsed transactions. |
| trade_score | number | Composite score derived from realized/virtual ROI and timing. |
| last_trade_date | date (YYYY-MM-DD) | Most recent transaction date for this member. |
curl "https://api.solutionhub.io/v1/senate/members" \
-H "Authorization: Bearer <API_TOKEN>"
[
{
"id": 1,
"name": "Markwayne Mullin",
"chamber": "Senate",
"party": "Republican",
"trade_count": 401,
"trade_score": 53,
"last_trade_date": "2025-11-10"
},
{
"id": 7,
"name": "Sheldon Whitehouse",
"chamber": "Senate",
"party": "Democrat",
"trade_count": 767,
"trade_score": 83,
"last_trade_date": "2025-11-21"
},
...
]