Company Information - Argentina
Description
Retrieve comprehensive company information from Argentina including business details, contact information, financial data, and executive information.
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 | ARG (Argentina) |
| taxID | ✅ | object | Tax identification object |
| taxID.identityNumber | ✅ | string | CUIT number (e.g., "34999257706") |
| taxID.checkDigit | ❌ | string | Not applicable for Argentina |
| companyName | ❌ | string | Company name (required if searchType=2) |
| searchType | ✅ | number | 1 (by tax ID) or 2 (by company name) |
| authToken | ✅ | string | Token access for request |
Request example
- Search by Tax ID
- Search by Company Name
```json
{
"country": "ARG",
"taxID": {
"identityNumber": "34999257706",
"checkDigit": ""
},
"companyName": "",
"searchType": 1,
"authToken": "c0444aba-d507-11ea-87d0-0242ac130003"
}
```
```json
{
"country": "ARG",
"taxID": {
"identityNumber": "",
"checkDigit": ""
},
"companyName": "MUNICIPIO DE ORO VERDE",
"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": "1289981685058072576",
"data": {
"result": 1,
"companyList": [
{
"id": 1,
"cuit": "34999257706",
"companyName": "MUNICIPIO DE ORO VERDE",
"streetAddress": "LOS ZORZALES Y L.",
"city": "ORO VERDE",
"stateProvince": "ENTRE RIOS",
"postalCode": 3100,
"telephoneNumber": "3434975112",
"companyEmailAddress": "NULL",
"companyType": "NULL",
"employeesRange": "De 21 a 50",
"salesRevenue": "343,809.00",
"primarySic": "4952",
"economicActivity": "Sewerage systems",
"executiveName": "JOSE LUIS DUME",
"executivePosition": "CEO"
}
]
}
}
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 |