Politicians List
GET
https://api.unusualwhales.com/api/politician-portfolios/people
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Responses
200 422 500Response Body 200 OK
id
string
The politician's ID.
Example:
e138f347-ae92-4cfb-8f41-7036ff09a213
name
string
The politician's name.
Example:
Zoe Lofgren
Try It
GET
Request Sample
curl -X GET "https://api.unusualwhales.com/api/politician-portfolios/people" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"id": "e138f347-ae92-4cfb-8f41-7036ff09a213",
"name": "Zoe Lofgren"
}
]
}