Skip to main content
GET
/
api
/
v1
/
lobbying
/
registrations
curl "https://api.northaxiumdata.ca/api/v1/lobbying/registrations?active=true&limit=10&offset=10" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "reg_id": "812039-12345",
      "client": "Tech Innovators North",
      "lobbyist_firm": "Capital Strategy Group",
      "effective_date": "2023-05-01",
      "end_date": null,
      "subject_labels": "Industry, Science and Technology",
      "registration_type": "Consultant"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 10
  }
}
Get a standardized dataset of all active and historical lobbying registrations, detailing who is lobbying on behalf of whom.

Query Parameters

client
string
Partial match on client organization name. Example: Shopify.
lobbyist
string
Partial match on lobbyist name. Example: Jane Smith.
institution
string
Partial match on target institution. Example: Finance Canada.
subject
string
Partial match on subject labels. Example: Taxation.
active
boolean
Filter active vs inactive registrations. Example: true.
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/registrations?active=true&limit=10&offset=10" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "reg_id": "812039-12345",
      "client": "Tech Innovators North",
      "lobbyist_firm": "Capital Strategy Group",
      "effective_date": "2023-05-01",
      "end_date": null,
      "subject_labels": "Industry, Science and Technology",
      "registration_type": "Consultant"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 10
  }
}