Skip to main content
GET
/
api
/
v1
/
lobbying
/
communications
curl "https://api.northaxiumdata.ca/api/v1/lobbying/communications?institution=Finance&limit=5&offset=5" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "com_id": "COM-992381",
      "date": "2023-10-15",
      "lobbyist_name": "Jane Smith",
      "client": "Green Energy Solutions Ltd.",
      "dpoh_name": "Mark Carney",
      "dpoh_title": "Minister of Finance",
      "institution": "Department of Finance Canada",
      "subjects": "Taxation and Finance, Environment"
    }
  ],
  "meta": {
    "total": 355000,
    "limit": 5,
    "offset": 5
  }
}
Access records of monthly communication reports describing interactions between designated public office holders and registered lobbyists.

Query Parameters

client
string
Partial match on client organization name. Example: Shopify.
dpoh
string
Partial match on the designated public office holder name. Example: Mark Carney.
institution
string
Partial match on the department or institution contacted. Example: Finance Canada.
lobbyist
string
Partial match on the lobbyist name. Example: Jane Smith.
subject
string
Partial match on the subject labels or subject text. Example: Taxation.
date_from
string
ISO 8601 start date. Example: 2023-01-01.
date_to
string
ISO 8601 end date. Example: 2023-12-31.
limit
integer
Results per page. Default: 50. Max: 500. 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/lobbying/communications?institution=Finance&limit=5&offset=5" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "com_id": "COM-992381",
      "date": "2023-10-15",
      "lobbyist_name": "Jane Smith",
      "client": "Green Energy Solutions Ltd.",
      "dpoh_name": "Mark Carney",
      "dpoh_title": "Minister of Finance",
      "institution": "Department of Finance Canada",
      "subjects": "Taxation and Finance, Environment"
    }
  ],
  "meta": {
    "total": 355000,
    "limit": 5,
    "offset": 5
  }
}