Skip to main content
GET
/
permits
/
list
curl "https://api.northaxiumdata.ca/v1/permits/list?limit=10&city=Toronto" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "permit_id": "BP-2023-88123",
      "city": "Toronto",
      "province": "ON",
      "issue_date": "2023-05-15",
      "permit_type": "Commercial",
      "value": 4500000.00,
      "description": "New construction of office building"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}
Get a standardized list of building permits aggregated from municipalities, filterable by city, year, and value.

Query Parameters

limit
integer
default:"100"
Maximum number of permits 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.
city
string
Filter permits by issuing municipality.
year
integer
Filter by the year the permit was issued (e.g., 2023).
curl "https://api.northaxiumdata.ca/v1/permits/list?limit=10&city=Toronto" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "permit_id": "BP-2023-88123",
      "city": "Toronto",
      "province": "ON",
      "issue_date": "2023-05-15",
      "permit_type": "Commercial",
      "value": 4500000.00,
      "description": "New construction of office building"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}