Skip to main content
GET
/
api
/
v1
/
committees
curl "https://api.northaxiumdata.ca/api/v1/committees?q=industry&limit=10&offset=10" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "id": 12,
      "name_en": "Standing Committee on Industry and Technology",
      "acronym": "INDU",
      "slug": "industry-and-technology"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 10
  }
}
Get a standardized list of standing, special, and legislative committees, including their current membership and mandate.

Query Parameters

q
string
Partial match on committee name. Example: carbon tax.
limit
integer
Results per page. Default: 50. Max: 200. Example: 25.
offset
integer
Result offset for pagination. Default: 0. Example: 50.
page and per_page are accepted as input aliases. per_page maps to limit, and page is converted internally into the corresponding offset.
curl "https://api.northaxiumdata.ca/api/v1/committees?q=industry&limit=10&offset=10" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "id": 12,
      "name_en": "Standing Committee on Industry and Technology",
      "acronym": "INDU",
      "slug": "industry-and-technology"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 10
  }
}