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://apidev.msla-id.com/experience-companyinfo-api-v1/api/idv-govcheck/v1/company/search
info
This endpoint requires Bearer Token authentication. Contact IT support to get credentials.
Request header parameter
| NAME | REQUIRED | TYPE | DESCRIPTION |
|---|---|---|---|
| Content-Type | ✅ | string | application/json |
| Authorization | ✅ | string | Bearer JWT token |
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) |
Request example
- Search by NIT
- Search by Company Name
{
"country": "COL",
"taxID": {
"identityNumber": "900345101",
"checkDigit": "3"
},
"companyName": "",
"searchType": 1
}
{
"country": "COL",
"taxID": {
"identityNumber": "",
"checkDigit": ""
},
"companyName": "ECOPETROL S.A.",
"searchType": 2
}
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": [
{
"document_type": "1",
"tax_id": "901706934",
"business_name": "ROSS VENDING SAS",
"department_code": "11",
"department_name": "BOGOTA",
"municipality_code": "001",
"municipality_name": "BOGOTA, D.C.",
"address": "KR 58 80 81",
"phone_number_1": "3012771567",
"phone_number_2": "3228149936",
"main_ciiu_code": "4711"
}
]
}
}
Response 400 status code
{
"traceId": "542fc743fffda052",
"timestamp": "2025-03-16 11:20:46",
"code": "IDV-4005",
"message": "Bad request - Invalid parameters provided",
"data": null
}
Response 401 status code
{
"timestamp": "2025-03-16T11:20:46.000Z",
"status": 401,
"error": "Unauthorized",
"message": "Bearer token is missing or invalid",
"path": "/api/companies"
}
Response 500 status code
{
"traceId": "43a20f33d4e8730d",
"timestamp": "2025-03-16 11:20:46",
"code": "IDV-1001",
"message": "A generic error has occurred.",
"data": null
}
Error codes
| Code | Message | Additional Info |
|---|---|---|
| E001 | Bearer token is missing or invalid | Check authorization header |
| E002 | Bearer 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 |