Skip to main content
GET
/
api
/
v1
/
grants
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/grants?recipient=University%20of%20Toronto&limit=10"
{
  "data": [
    {
      "record_id": "grant_abc123",
      "recipient": "University of Toronto",
      "department": "Natural Sciences and Engineering Research Council of Canada",
      "value": 250000.00,
      "event_date": "2023-04-01",
      "source_dataset": "open.canada grants and contributions"
    }
  ],
  "meta": {
    "total": 1276865,
    "limit": 10,
    "offset": 0
  }
}

Overview

Returns paginated federal grant records from the Treasury Board of Canada Secretariat Proactive Disclosure dataset — 1.28M+ grants covering agreements to organizations and individuals across all federal departments.
Recipient names are source-fragmented. The same institution may appear under multiple name strings. Use Grant Recipients to browse and resolve the exact string before profiling a recipient.

Query Parameters

recipient
string
Partial match on recipient name
department
string
Partial match on granting department name
min_value
number
Minimum grant value in CAD
max_value
number
Maximum grant value in CAD
date_from
string
ISO 8601 start date
date_to
string
ISO 8601 end date
limit
integer
Results per page. Default: 50. Max: 200
offset
integer
Pagination offset. Default: 0
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/grants?recipient=University%20of%20Toronto&limit=10"
{
  "data": [
    {
      "record_id": "grant_abc123",
      "recipient": "University of Toronto",
      "department": "Natural Sciences and Engineering Research Council of Canada",
      "value": 250000.00,
      "event_date": "2023-04-01",
      "source_dataset": "open.canada grants and contributions"
    }
  ],
  "meta": {
    "total": 1276865,
    "limit": 10,
    "offset": 0
  }
}