Skip to main content
GET
/
api
/
v1
/
grants
/
recipients
curl "https://api.northaxiumdata.ca/api/v1/grants/recipients?q=University&limit=10" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "recipient": "University of Toronto",
      "grant_count": 8421,
      "total_value": 128500000.00
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}
Get a list of organizations, municipalities, and institutions that have received federal grants or contributions.

Query Parameters

limit
integer
default:"100"
Maximum number of recipients to return. Default: 20. Max: 200. Example: 25.
offset
integer
default:"0"
Number of records to skip for pagination. Example: 50.
q
string
required
Partial match on recipient name. Example: University of Toronto.
curl "https://api.northaxiumdata.ca/api/v1/grants/recipients?q=University&limit=10" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "recipient": "University of Toronto",
      "grant_count": 8421,
      "total_value": 128500000.00
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}