Skip to main content
GET
/
api
/
v1
/
procurement
/
{solicitation_number}
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/procurement/PS23-AG-004"
{
  "data": {
    "solicitation_number": "PS23-AG-004",
    "tender": {
      "record_id": "tender_abc",
      "closing_date": "2023-03-15",
      "department": "Public Services and Procurement Canada"
    },
    "awards": [
      {
        "record_id": "award_xyz",
        "vendor": "Acme Government Solutions Inc",
        "value": 450000.00,
        "award_date": "2023-04-02"
      }
    ],
    "contracts": [
      {
        "record_id": "contract_123",
        "vendor": "Acme Government Solutions Inc",
        "value": 450000.00,
        "event_date": "2023-04-15"
      }
    ]
  }
}

Overview

Returns all procurement events — tender notices, award notices, and contracts — linked by a common solicitation_number. Use this to trace the full lifecycle of a competitive procurement from open tender through to final contract award.
Solicitation number coverage is approximately 4% of total procurement records. Many contracts in the TBS disclosure dataset do not carry a solicitation number in the source data.

Path Parameters

solicitation_number
string
required
The solicitation number to look up — e.g. PS23-AG-004
curl -H "X-API-Key: your_api_key_here" \
  "https://api.northaxiumdata.ca/api/v1/procurement/PS23-AG-004"
{
  "data": {
    "solicitation_number": "PS23-AG-004",
    "tender": {
      "record_id": "tender_abc",
      "closing_date": "2023-03-15",
      "department": "Public Services and Procurement Canada"
    },
    "awards": [
      {
        "record_id": "award_xyz",
        "vendor": "Acme Government Solutions Inc",
        "value": 450000.00,
        "award_date": "2023-04-02"
      }
    ],
    "contracts": [
      {
        "record_id": "contract_123",
        "vendor": "Acme Government Solutions Inc",
        "value": 450000.00,
        "event_date": "2023-04-15"
      }
    ]
  }
}