Skip to main content
GET
/
api
/
v1
/
research_grants
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/research_grants?institution=University%20of%20Toronto&source=NSERC&limit=10"
{
  "data": [
    {
      "record_id": "nserc_abc123",
      "researcher_name": "Dr. Jane Smith",
      "institution": "University of Toronto",
      "province_en": "Ontario",
      "award_amount": 185000.00,
      "fiscal_year": "2022-23",
      "program_en": "Discovery Grants Program",
      "source": "NSERC",
      "keywords": "machine learning, climate modelling"
    }
  ],
  "meta": {
    "total": 921586,
    "limit": 10,
    "offset": 0
  }
}

Overview

Returns 921K+ research grant records from the Natural Sciences and Engineering Research Council (NSERC) and Social Sciences and Humanities Research Council (SSHRC). NSERC covers 1991–present; SSHRC covers 1998–present.

Query Parameters

q
string
Full-text search across researcher name, institution, program name, and keywords
source
string
Filter by council. Options: NSERC, SSHRC
researcher_name
string
Partial match on researcher name
institution
string
Partial match on institution name
province
string
Two-letter province code — e.g. ON, BC, QC
fiscal_year
string
Fiscal year — e.g. 2022-23
min_value
number
Minimum award amount in CAD
max_value
number
Maximum award amount in CAD
limit
integer
Results per page. Default: 100. Max: 200
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/research_grants?institution=University%20of%20Toronto&source=NSERC&limit=10"
{
  "data": [
    {
      "record_id": "nserc_abc123",
      "researcher_name": "Dr. Jane Smith",
      "institution": "University of Toronto",
      "province_en": "Ontario",
      "award_amount": 185000.00,
      "fiscal_year": "2022-23",
      "program_en": "Discovery Grants Program",
      "source": "NSERC",
      "keywords": "machine learning, climate modelling"
    }
  ],
  "meta": {
    "total": 921586,
    "limit": 10,
    "offset": 0
  }
}