Skip to main content
GET
/
api
/
v1
/
departments
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/departments?q=Defence"
{
  "data": [
    {
      "department": "National Defence | Défense nationale",
      "record_count": 18432,
      "total_value": 4821034521.00
    }
  ],
  "meta": {
    "total": 1,
    "limit": 100,
    "offset": 0
  }
}

Overview

Returns all distinct federal department strings ranked by contract record count. Use to find the exact department name before calling Department Profile.

Query Parameters

q
string
Partial match on department name. Example: Palantir.
sort_by
string
Only record_count. Default: record_count. Example: date.
sort_order
string
asc or desc. Default: desc. Example: desc.
limit
integer
Max results. Default: 100. Max: 200. Example: 25.
offset
integer
Result offset. Default: 0. Example: 50.
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/departments?q=Defence"
{
  "data": [
    {
      "department": "National Defence | Défense nationale",
      "record_count": 18432,
      "total_value": 4821034521.00
    }
  ],
  "meta": {
    "total": 1,
    "limit": 100,
    "offset": 0
  }
}