Skip to main content
GET
/
parliamentary
/
committees
curl "https://api.northaxiumdata.ca/v1/parliamentary/committees?limit=10&session=44-1" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "committee_id": "INDU",
      "chamber": "House of Commons",
      "name": "Standing Committee on Industry and Technology",
      "session": "44-1",
      "chair": "MP-983"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}
Get a standardized list of standing, special, and legislative committees, including their current membership and mandate.

Query Parameters

limit
integer
default:"100"
Maximum number of committees 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.
session
string
Filter by parliamentary session (e.g., 44-1).
curl "https://api.northaxiumdata.ca/v1/parliamentary/committees?limit=10&session=44-1" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "committee_id": "INDU",
      "chamber": "House of Commons",
      "name": "Standing Committee on Industry and Technology",
      "session": "44-1",
      "chair": "MP-983"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}