Skip to main content
GET
/
grants
/
infrastructure
curl "https://api.northaxiumdata.ca/v1/grants/infrastructure?limit=10&region=Ontario" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "project_id": "INF-2023-8841",
      "project_name": "Ontario Line Subway Extension",
      "region": "Ontario",
      "project_type": "Transit",
      "total_funding": 14000000.00,
      "federal_contribution": 4500000.00,
      "start_date": "2023-01-15",
      "status": "In Progress"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}
Get a standardized list of federal infrastructure funding projects, filterable by region, timeline, and project type.

Query Parameters

limit
integer
default:"100"
Maximum number of projects to return. Maximum limits map to your plan (100 for Basic, 1,000 for Pro, 10,000 for Enterprise).
offset
integer
default:"0"
Number of records to skip for pagination.
region
string
Filter by geographic region, province, or territory (e.g., Ontario, British Columbia).
project_type
string
Filter by the type of infrastructure project (e.g., Transit, Green Infrastructure, Social).
curl "https://api.northaxiumdata.ca/v1/grants/infrastructure?limit=10&region=Ontario" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "project_id": "INF-2023-8841",
      "project_name": "Ontario Line Subway Extension",
      "region": "Ontario",
      "project_type": "Transit",
      "total_funding": 14000000.00,
      "federal_contribution": 4500000.00,
      "start_date": "2023-01-15",
      "status": "In Progress"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}