🇨🇦Canada

Canadian Company Information

Endpoint

https://api.verifik.co/v2/ca/company

The Canadian Company Information provide detailed information about businesses registered in Canada. While the example provided pertains to a business in the province of British Columbia (BC), this service can be used for businesses in most provinces of Canada. It is a valuable resource for obtaining essential details about businesses, including their names and locations.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required?
Description
Example

business

String

True

Name of the business, It must be as accurate as possible.

AIR CANADA

province

String

True

Acronym of the province where the business is from. Valid params: [AB, BC, MB, NS, ON, QC, SK]

BC

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/ca/company>',
  params: {business: 'AIR CANADA', province: 'BC'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response

{
  "data": {
    "business": "AIR CANADA",
    "businessNumber": "779824879",
    "businessType": "BC Company",
    "compayName": "AA CANADA AIR CARGO INC.",
    "country": [
      "CA"
    ],
    "province": "BC",
    "regOfficeCity": "Vancouver",
    "regOfficeProvince": "BC",
    "registryId": "BC1217527",
    "status": "Active",
    "statusDate": "2019-07-25"
  },
  "signature": {
    "dateTime": "September 19, 2023 5:17 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "niq5c"
}

Last updated