Canadá
Endpoint
https://api.verifik.co/v2/ca/company
Recuperar datos de empresa canadiense por identificador empresarial.
Headers
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parámetros
| Name | Type | Required | Description |
|---|---|---|---|
business | string | Yes | Nombre de la empresa. |
province | string | Yes | Código de provincia canadiense. |
Solicitud
- Node.js
- PHP
- Python
- Go
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/ca/company", {
params: { business: "BAI HENG PACKAGING SUPPLIES INC", province: "ON" },
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);
<?php
$ch = curl_init("https://api.verifik.co/v2/ca/company");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Accept: application/json",
"Authorization: Bearer " . getenv("VERIFIK_TOKEN")
]);
$query = http_build_query([
"business" => "BAI HENG PACKAGING SUPPLIES INC",
"province" => "ON"
]);
curl_setopt($ch, CURLOPT_URL, "https://api.verifik.co/v2/ca/company?".$query);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
import os, requests
url = "https://api.verifik.co/v2/ca/company"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"business": "BAI HENG PACKAGING SUPPLIES INC", "province": "ON"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
package main
import (
"fmt"
"net/http"
)
func main() {
url := "https://api.verifik.co/v2/ca/company?business=BAI%20HENG%20PACKAGING%20SUPPLIES%20INC&province=ON"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Set("Accept", "application/json")
req.Header.Set("Authorization", "Bearer "+getenv("VERIFIK_TOKEN"))
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
fmt.Println(resp.Status)
}
Respuesta
- 200
- 404
- 401
- 500
{
"data": {
"business": "BAI HENG PACKAGING SUPPLIES INC",
"businessNumber": "783439201",
"businessType": "ONTARIO BUSINESS CORP.",
"compayName": "BAI HENG PACKAGING SUPPLIES INC.",
"province": "ON",
"regOfficeCity": "Richmond Hill",
"regOfficeProvince": "Ontario",
"registryId": "2859292",
"status": "Active",
"statusDate": "2021-08-10"
},
"signature": {
"dateTime": "October 10, 2025 4:19 PM",
"message": "Certified by Verifik.co"
},
"id": "1J9CJ"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"message": "Authentication required",
"code": "UNAUTHORIZED"
}
{
"code": "InternalServerError",
"message": "Server error."
}
Notas
- Contacta al soporte para campos completos del dataset.