Run with Postman

Company (1.0.0)

This service provides REST calls to extract information on businesses and companies from VAT or TAX code.

At this link you can find a list of companies that allow you to try the service in a sandbox environment.

Company

Extraction of company information starting from VAT or TAX code

Anti Money Laundering

Call that allows you to extract data from a company for anti-money laundering purposes

Authorizations:
path Parameters
vatCode_or_taxCode
required
string
Default: "<string>"
Example: 12485671007

vat code or tax code

Responses

Response Schema: application/json
Array of objects (Aml) [ items ]
success
boolean
message
string
error
integer

Request samples

CURL *hnd = curl_easy_init();

curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://company.openapi.com/IT-aml/%7BvatCode_or_taxCode%7D");

struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);

CURLcode ret = curl_easy_perform(hnd);

Response samples

Content type
application/json
{
  • "data": {
    },
  • "success": true,
  • "message": "",
  • "error": null
}

Marketing

Call that allows you to extract data from a company for a marketing function

Authorizations:
path Parameters
vatCode_or_taxCode
required
string
Default: "<string>"
Example: 12485671007

vat code or tax code

Responses

Response Schema: application/json
Array of objects (Marketing) [ items ]
success
boolean
message
string
error
integer

Request samples

CURL *hnd = curl_easy_init();

curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://company.openapi.com/IT-marketing/%7BvatCode_or_taxCode%7D");

struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);

CURLcode ret = curl_easy_perform(hnd);

Response samples

Content type
application/json
{