Skip to main content
GET
/
api
/
v1
/
vendors
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/vendors?q=Palantir"
{
  "data": [
    {
      "vendor": "Palantir Technologies Canada Inc",
      "vendor_key": "Palantir%20Technologies%20Canada%20Inc",
      "total_value": 23840000.00,
      "contract_count": 14
    }
  ],
  "meta": {
    "total": 1,
    "limit": 100,
    "offset": 0
  }
}

Overview

Returns a ranked list of distinct vendor name strings from the contracts dataset. Use this to find the exact source string for a vendor before calling Vendor Profile. Pattern: search vendorsget vendor profile

Query Parameters

q
string
Partial match on vendor name (case-insensitive). Example: Palantir.
sort_by
string
Sort order. Options: total_value, contract_count. Default: total_value. Example: date.
sort_order
string
asc or desc. Default: desc. Example: desc.
min_value
number
Minimum aggregated contract value. Example: 100000.
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/vendors?q=Palantir"
{
  "data": [
    {
      "vendor": "Palantir Technologies Canada Inc",
      "vendor_key": "Palantir%20Technologies%20Canada%20Inc",
      "total_value": 23840000.00,
      "contract_count": 14
    }
  ],
  "meta": {
    "total": 1,
    "limit": 100,
    "offset": 0
  }
}