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,
    "first_contract_date": "2022-04-08",
    "last_contract_date": "2024-11-01",
    "departments": [
      {
        "name": "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",
        "date": "2023-11-01"
      }
    ]
  }
}

Overview

Returns an aggregated procurement profile for a vendor — total contract value, contract count, top departments, and recent contracts. The backend attempts an exact match first, then falls back to prefix and partial-match canonicalization. Use Browse Vendors first to inspect likely source strings. Pattern: browse vendorsget vendor profile

Path Parameters

name
string
required
Vendor name string — e.g. Palantir Technologies Canada Inc. Use the vendor_key field from the browse endpoint to construct the URL safely. Example: Justin Trudeau.

Query Parameters

name
string
Alternative to the path parameter. When provided, this value takes precedence over the URL path segment. Use this for vendor names containing special characters (&, /, +) that may not survive URL path encoding reliably. For example: GET /api/v1/vendors/_?name=SNC-Lavalin%20%26%20Associates. Example: Justin Trudeau.
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,
    "first_contract_date": "2022-04-08",
    "last_contract_date": "2024-11-01",
    "departments": [
      {
        "name": "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",
        "date": "2023-11-01"
      }
    ]
  }
}