Company Information - Colombia
Descriptionβ
Retrieve comprehensive company information from Colombia including NIT, business address, contact details, company status, and economic activity (CIIU).
HTTP method POSTβ
Endpointβ
https://lu0lfdczmd.execute-api.us-west-2.amazonaws.com/api/companies
info
This endpoint requires AWS IAM Signature authentication. Contact IT support to get credentials (ACCESS KEY ID, SECRET ACCESS KEY).
- REGION: us-west-2
- SERVICE: execute-api
Request header parameterβ
| NAME | REQUIRED | TYPE | DESCRIPTION |
|---|---|---|---|
| Content-Type | β | string | application/json |
Request body parametersβ
| NAME | REQUIRED | TYPE | DESCRIPTION |
|---|---|---|---|
| country | β | string | COL (Colombia) |
| taxID | β | object | Tax identification object |
| taxID.identityNumber | β | string | NIT number (e.g., "900345101") |
| taxID.checkDigit | β | string | Check digit: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 |
| companyName | β | string | Company name (required if searchType=2) |
| searchType | β | number | 1 (by NIT) or 2 (by company name) |
| authToken | β | string | Token access for request |
Request exampleβ
- Search by NIT
- Search by Company Name
{
"country": "COL",
"taxID": {
"identityNumber": "900345101",
"checkDigit": "3"
},
"companyName": "",
"searchType": 1,
"authToken": "c0444aba-d507-11ea-87d0-0242ac130003"
}
{
"country": "COL",
"taxID": {
"identityNumber": "",
"checkDigit": ""
},
"companyName": "ECOPETROL S.A.",
"searchType": 2,
"authToken": "c0444aba-d507-11ea-87d0-0242ac130003"
}
Status code responsesβ
| Code | Description |
|---|---|
| 200 | OK |
| 400 | Bad request |
| 401 | Unauthorized |
| 500 | Internal server error |
Response 200 status codeβ
{
"trackingId": "1289593632687398912",
"data": {
"result": 1,
"companyList": [
{
"id": 1,
"nit": "900345101",
"dv": "1",
"companyName": "CENTRO DE ATENCION EN DROGADICCION NUEVA VIDA EU",
"address": "CORR DE SAN JUAN",
"municipio": "IPIALES",
"departamento": "NARIΕO",
"phoneNumber": "7739212",
"email": null,
"numberOfEmployees": null,
"sales": null,
"companyStatus": "OPERACIONAL",
"ciiuDescription": "Q86 ACTIVIDADES DE ATENCIΓN DE LA SALUD HUMANA",
"dateStablished": null,
"contactName": null
}
]
}
}
Error codesβ
| Code | Message | Additional Info |
|---|---|---|
| E001 | Token to do request is missing or invalid | Check authToken parameter |
| E002 | Token expired, contact with your administrator | Contact IT support |
| E101 | Field identityNumber is required | Required when searchType=1 |
| E102 | Field companyName is required and length > 4 characters | Required when searchType=2 |
| E104 | You have exceeded the daily query limit | Limit: 10000 requests/day |
| E105 | Field checkDigit is required | Required for Colombia |