Panamá
Endpoint
https://api.verifik.co/v2/pa/company
Recuperar datos de empresa panameña por identificador.
Headers
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parámetros
| Name | Type | Required | Description |
|---|---|---|---|
documentType | string | Yes | Tipo de documento. Parámetro permitido: RUC. |
documentNumber | string | Yes | Identificador de empresa. |
dv | string | Yes | Dígito de verificación. |
Solicitud
- Node.js
- PHP
- Python
- Go
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/pa/company", {
params: { documentType: "RUC", documentNumber: "155703400-2-2021", dv: "39" },
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);
<?php
$ch = curl_init("https://api.verifik.co/v2/pa/company");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Accept: application/json",
"Authorization: Bearer " . getenv("VERIFIK_TOKEN")
]);
$query = http_build_query([
"documentType" => "RUC",
"documentNumber" => "155703400-2-2021",
"dv" => "39"
]);
curl_setopt($ch, CURLOPT_URL, "https://api.verifik.co/v2/pa/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/pa/company"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "RUC", "documentNumber": "155703400-2-2021", "dv": "39"}
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/pa/company?documentType=RUC&documentNumber=155703400-2-2021&dv=39"
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
- 409
- 401
- 500
{
"data": {
"address": "PROVINCIA PANAMÁ",
"businessName": "MATA ENTERPRISES, S.A.",
"capital": "1,000.00",
"currencyType": "Dólares americanos",
"currentStatus": "DISUELTO",
"documentNumber": "155703400-2-2021",
"documentType": "RUC",
"dv": "39",
"folioOrFincaOrFicha": "(MERCANTIL) Folio Nº 126965 (S)",
"idFolio": "1183912",
"organizationType": "SOCIEDAD ANONIMA",
"recordType": "Mercantil",
"registrationDate": "13/03/1984",
"representatives": {
"director": "ABDIEL NU#EZ",
"president": "JOSE ALBERTO RUIZ",
"representative": "EL PRESIDENTE, EN SU AUSENCIA EL TESORERO O EL SECRETARIO.",
"residentAgent": "JURGEN MOSSACK",
"secretary": "LETICIA MONTOYA",
"subscriber": "DIVA ARGELIS PATINO DE DONADO",
"treasurer": "FRANCIS PEREZ",
"undefined": "ABDIEL NU#EZ",
"vicePresident": "ABDIEL NU#EZ"
},
"status": "",
"validity": "PERPETUA"
},
"signature": {
"dateTime": "October 10, 2025 5:25 PM",
"message": "Certified by Verifik.co"
},
"id": "1SPK4"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "documentType must be one of: [RUC]"
}
{
"code": "MissingParameter",
"message": "missing documentNumber\n"
}
{
"code": "MissingParameter",
"message": "missing documentType\n"
}
{
"code": "MissingParameter",
"message": "missing dv\n"
}
{
"message": "Authentication required",
"code": "UNAUTHORIZED"
}
{
"code": "InternalServerError",
"message": "Server error."
}
Notas
- Contacta al soporte para campos completos del dataset.