Skip to main content
GET
/
api
/
v1
/
contributions
curl "https://api.northaxiumdata.ca/api/v1/contributions?party=Liberal&limit=10&offset=0" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "record_id": "CON-93821",
      "contributor_name": "John Doe",
      "contributor_city": "Toronto",
      "contributor_province": "ON",
      "recipient_name": "Liberal Party of Canada",
      "political_party": "Liberal Party of Canada",
      "monetary_amount": 1500.00,
      "contribution_date": "2023-08-12"
    }
  ],
  "meta": {
    "total": 6460000,
    "limit": 10,
    "offset": 0
  }
}
Get a standardized list of individual and corporate contributions, filterable by political party, riding, and dates.

Query Parameters

q
string
Full-text search across contributor name, party, and recipient name simultaneously. Example: John Doe.
contributor
string
Partial match on contributor name. Example: John Doe.
recipient
string
Partial match on recipient name. Example: Liberal Party.
party
string
Partial match on political party. Example: Liberal.
entity_type
string
Exact match on political entity type. Example: political_party.
contributor_type
string
Exact match on contributor type. Example: individual.
contributor_province
string
Exact match on contributor province. Example: ON.
electoral_event
string
Exact match on electoral event. Example: 2021 General Election.
year
integer
Exact match on contribution year. Example: 2023.
min_amount
number
Minimum monetary amount. Example: 500.
max_amount
number
Maximum monetary amount. Example: 1500.
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/contributions?party=Liberal&limit=10&offset=0" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "record_id": "CON-93821",
      "contributor_name": "John Doe",
      "contributor_city": "Toronto",
      "contributor_province": "ON",
      "recipient_name": "Liberal Party of Canada",
      "political_party": "Liberal Party of Canada",
      "monetary_amount": 1500.00,
      "contribution_date": "2023-08-12"
    }
  ],
  "meta": {
    "total": 6460000,
    "limit": 10,
    "offset": 0
  }
}