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

Query Parameters

limit
integer
default:"100"
Maximum number of contributions 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.
party
string
Filter by the recipient political party (e.g., Liberal, Conservative, NDP).
riding
string
Filter contributions directed to candidates in a specific electoral district or riding.
curl "https://api.northaxiumdata.ca/v1/contributions/list?limit=10&party=Liberal" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "contribution_id": "CON-93821",
      "contributor_name": "John Doe",
      "contributor_city": "Toronto",
      "contributor_province": "ON",
      "recipient_name": "Liberal Party of Canada",
      "recipient_type": "Political Party",
      "amount": 1500.00,
      "date": "2023-08-12"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}