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

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.
status
string
Filter by the registration status (e.g., Active, Inactive).
client_name
string
Filter registrations by the client or corporation being represented.
curl "https://api.northaxiumdata.ca/v1/lobbying/registrations?limit=10&status=Active" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "registration_number": "812039-12345",
      "status": "Active",
      "client": "Tech Innovators North",
      "lobbyist_firm": "Capital Strategy Group",
      "start_date": "2023-05-01",
      "end_date": null,
      "subject_matter": ["Industry", "Science and Technology"]
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}