Skip to main content
GET
/
lobbying
/
communications
curl "https://api.northaxiumdata.ca/v1/lobbying/communications?limit=5&government_institution=Finance" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "communication_id": "COM-992381",
      "date_of_communication": "2023-10-15",
      "lobbyist_name": "Jane Smith",
      "client": "Green Energy Solutions Ltd.",
      "public_office_holders": [
        {
          "name": "John Doe",
          "title": "Director of Technology",
          "institution": "Department of Finance Canada"
        }
      ],
      "subject_matter": ["Taxation and Finance", "Environment"]
    }
  ],
  "meta": {
    "total": 1,
    "limit": 5,
    "offset": 0
  }
}
Access records of monthly communication reports describing interactions between designated public office holders and registered lobbyists.

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.
date_start
string
Filter for communications that occurred on or after this date (YYYY-MM-DD).
date_end
string
Filter for communications that occurred on or before this date (YYYY-MM-DD).
government_institution
string
Filter by the federal department or institution contacted.
curl "https://api.northaxiumdata.ca/v1/lobbying/communications?limit=5&government_institution=Finance" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "communication_id": "COM-992381",
      "date_of_communication": "2023-10-15",
      "lobbyist_name": "Jane Smith",
      "client": "Green Energy Solutions Ltd.",
      "public_office_holders": [
        {
          "name": "John Doe",
          "title": "Director of Technology",
          "institution": "Department of Finance Canada"
        }
      ],
      "subject_matter": ["Taxation and Finance", "Environment"]
    }
  ],
  "meta": {
    "total": 1,
    "limit": 5,
    "offset": 0
  }
}