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.

Parámetros

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

Implementation

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 {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response 200 - (Successful 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"
}

Other responses

Code Description Response Body
404 Not Found Information not found. {
"code": "NotFound",
"message": "No existe contribuyente asociado a la CUIT ingresada",
"signature": {
"dateTime": "February 21, 2024 7:52 PM",
"message": "Certified by Verifik.co"
}
}
409 Conflict Some parameters are missing. {
"code": "MissingParameter",
"message": "missing business\n. missing province\n"
}
409 Conflict Incorrect province. {
"code": "MissingParameter",
"message": "province must be one of: [AB, BC, MB, NS, ON, QC, SK]"
}