Overview
Returns grouped aggregate statistics over the research grants dataset. Use this to answer questions like “how much has NSERC awarded to Ontario institutions?” or “what are the top programs by total funding?”
Accepts the same filter parameters as Research Grants, so you can scope statistics to any subset of the data before grouping.
Query Parameters
Field to group results by. One of source, institution, province, fiscal_year. Default: source
Field to sum. Only award_amount is currently supported. Default: award_amount
Full-text search across researcher name, institution, program, and keywords — applied before grouping
Filter to NSERC or SSHRC before grouping
Partial match on institution name
Two-letter province code — e.g. ON, BC, QC
Fiscal year — e.g. 2022-23
Minimum award amount filter applied before grouping
Maximum award amount filter applied before grouping
Max groups to return. Default: 100. Max: 200
Result offset. Default: 0
curl -H "X-API-Key: your_api_key_here" \
"https://api.northaxiumdata.ca/api/v1/research_grants/stats?group_by=province"
{
"data": [
{
"group_by": "province",
"group_value": "ON",
"record_count": 284500,
"sum_field": "award_amount",
"sum_value": 4823000000.00
},
{
"group_by": "province",
"group_value": "QC",
"record_count": 198200,
"sum_field": "award_amount",
"sum_value": 3241000000.00
}
],
"meta": {
"total": 13,
"limit": 100,
"offset": 0
}
}