Skip to main content
GET
/
api
/
v1
/
contributors
/
{name}
curl "https://api.northaxiumdata.ca/api/v1/contributors/Jane%20Doe" \
  -H "X-API-Key: <your-api-key>"
{
  "data": {
    "contributor_name": "Jane Doe",
    "contributor_type": "Individual",
    "contributor_province": "BC",
    "total_contributions": 7,
    "total_monetary_amount": 4200.00,
    "total_non_monetary_amount": 0.00,
    "first_contribution_year": 2015,
    "last_contribution_year": 2023,
    "by_party": [
      {
        "party": "Conservative Party of Canada",
        "count": 4,
        "total_amount": 2600.00
      }
    ],
    "by_year": [
      {
        "year": 2023,
        "count": 2,
        "total_amount": 1600.00
      }
    ],
    "recent_contributions": [
      {
        "id": 93821,
        "recipient": "Conservative Party of Canada",
        "party": "Conservative Party of Canada",
        "political_entity": "political_party",
        "electoral_event": "44th General Election",
        "contribution_date": "2023-09-22",
        "monetary_amount": 1600.00,
        "non_monetary_amount": 0.00,
        "fiscal_date": "2023-09-22"
      }
    ]
  }
}
Get a comprehensive view of all federal political contributions linked to a specific entity across multiple years, parties, and candidates.

Path Parameters

name
string
required
Contributor name to resolve. Exact and alternate-name patterns are attempted automatically. Example: Justin Trudeau.
curl "https://api.northaxiumdata.ca/api/v1/contributors/Jane%20Doe" \
  -H "X-API-Key: <your-api-key>"
{
  "data": {
    "contributor_name": "Jane Doe",
    "contributor_type": "Individual",
    "contributor_province": "BC",
    "total_contributions": 7,
    "total_monetary_amount": 4200.00,
    "total_non_monetary_amount": 0.00,
    "first_contribution_year": 2015,
    "last_contribution_year": 2023,
    "by_party": [
      {
        "party": "Conservative Party of Canada",
        "count": 4,
        "total_amount": 2600.00
      }
    ],
    "by_year": [
      {
        "year": 2023,
        "count": 2,
        "total_amount": 1600.00
      }
    ],
    "recent_contributions": [
      {
        "id": 93821,
        "recipient": "Conservative Party of Canada",
        "party": "Conservative Party of Canada",
        "political_entity": "political_party",
        "electoral_event": "44th General Election",
        "contribution_date": "2023-09-22",
        "monetary_amount": 1600.00,
        "non_monetary_amount": 0.00,
        "fiscal_date": "2023-09-22"
      }
    ]
  }
}