Skip to main content
GET
/
parliamentary
/
politicians
curl "https://api.northaxiumdata.ca/v1/parliamentary/politicians?limit=10&party=Liberal" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "politician_id": "MP-883",
      "name": "Jane Smith",
      "chamber": "House of Commons",
      "party": "Liberal",
      "riding": "Vancouver Centre",
      "province": "BC",
      "status": "Active"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}
Get a standardized list of active and historical federal politicians, their party affiliations, ridings, and roles.

Query Parameters

limit
integer
default:"100"
Maximum number of records to return. Maximum limits map to your plan (100 for Basic, 1,000 for Pro, 10,000 for Enterprise).
offset
integer
default:"0"
Number of records to skip for pagination.
party
string
Filter by political party.
province
string
Filter by province or territory represented.
curl "https://api.northaxiumdata.ca/v1/parliamentary/politicians?limit=10&party=Liberal" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "politician_id": "MP-883",
      "name": "Jane Smith",
      "chamber": "House of Commons",
      "party": "Liberal",
      "riding": "Vancouver Centre",
      "province": "BC",
      "status": "Active"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}