Skip to main content
GET
/
api
/
v1
/
vendors
/
{name}
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/vendors/Palantir%20Technologies%20Canada%20Inc"
{
  "data": {
    "vendor": "Palantir Technologies Canada Inc",
    "total_value": 23840000.00,
    "contract_count": 14,
    "top_departments": [
      {
        "department": "Royal Canadian Mounted Police | Gendarmerie royale du Canada",
        "total_value": 12500000.00,
        "contract_count": 8
      }
    ],
    "recent_contracts": [
      {
        "record_id": "abc123",
        "value": 3200000.00,
        "department": "Royal Canadian Mounted Police | Gendarmerie royale du Canada",
        "event_date": "2023-11-01"
      }
    ]
  }
}

Overview

Returns an aggregated procurement profile for a vendor — total contract value, contract count, top departments, and recent contracts. The name parameter must match the vendor string exactly as it appears in the source data. Use Browse Vendors first to find the exact string.

Path Parameters

name
string
required
Exact vendor name string as it appears in the source data — e.g. Palantir Technologies Canada Inc
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/vendors/Palantir%20Technologies%20Canada%20Inc"
{
  "data": {
    "vendor": "Palantir Technologies Canada Inc",
    "total_value": 23840000.00,
    "contract_count": 14,
    "top_departments": [
      {
        "department": "Royal Canadian Mounted Police | Gendarmerie royale du Canada",
        "total_value": 12500000.00,
        "contract_count": 8
      }
    ],
    "recent_contracts": [
      {
        "record_id": "abc123",
        "value": 3200000.00,
        "department": "Royal Canadian Mounted Police | Gendarmerie royale du Canada",
        "event_date": "2023-11-01"
      }
    ]
  }
}