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",
      "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)
sort_by
string
Sort order. Options: total_value, contract_count. Default: total_value
limit
integer
Max results. Default: 100. Max: 200
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/vendors?q=Palantir"
{
  "data": [
    {
      "vendor": "Palantir Technologies Canada Inc",
      "total_value": 23840000.00,
      "contract_count": 14
    }
  ],
  "meta": {
    "total": 1,
    "limit": 100,
    "offset": 0
  }
}