HomeProductsCompany Stakeholders - Italy

Company Stakeholders - Italy

From: €0.095 + VAT

The Company Stakeholders service is part of the API Company and is designed for all companies that want to access certified and detailed data on Executives, Shareholders, Legal Representatives, and Employees of a company via API.

Delivery

In a few minutes

available for
  • it

The Company Stakeholders service belongs to the API Company and is designed for all companies that want access to certified and detailed data on legal representatives, shareholders, and generally on all individuals holding a position in the company.

For each individual, data such as

  • Name
  • Surname
  • Role
  • Start of activity
  • Age
  • Tax code
  • Date and place of birth

Regarding shareholders, it is possible to access the list of the top 10 and also view their respective ownership shares. The dataset is then enriched with information on employees, such as number, trend compared to the previous year, and contract type.

The service is currently available in both synchronous and asynchronous modes.

During periods of high traffic, official data sources might experience delays in response times, so if not absolutely necessary, we suggest implementing the POST method.
This method allows you to set a callback URL, thus eliminating the need to check the status and taking advantage of the opportunity to receive proactive notification upon request completion.

The reference endpoint is https://company.openapi.com/IT-stakeholders/{vatCode_or_taxCode}

REQUEST EXAMPLE

POST /IT-stakeholders

This is an example of a request where the VAT number parameter was used: 12485671007

https://company.openapi.com/IT-stakeholders/12485671007

As previously mentioned, you can also set up a callback via the payload:

{
  "callback": {
    "url": "https://your_domain.it/your_callback.php",
    "method": "JSON",
    "headers": {
      "session_id": "oiwejdf89453urf945jfg"
    }
  }

RESPONSE EXAMPLE

POST /IT-stakeholders

The response will include the request ID and the status

{
  "callback": {
  "data": {
    "state": "PENDING",
    "id": "66a8ed9b82cf2ae627012068"
  },
  "success": true,
  "message": "",
  "error": null
}

CHECK REQUEST STATUS

You can check the status of the request at any time via the endpoint /IT-check_id/{id}. If a callback is set, the system will notify you directly when the response is available.

REQUEST EXAMPLE

GET/IT-check_id/{id}

https://company.openapi.com//IT-check_id/66a8ed9b82cf2ae627012068

RESPONSE EXAMPLE

If the request status is completed, meaning it is in done, the response will include all the data:

{
      "data": {
        "managers": [
          {
            "name": "LUCA",
            "surname": "SCURIATTI",
            "roles": [
              {
                "role": {
                  "code": "AUN",
                  "description": "General Manager"
                },
                "roleStartDate": "2020-09-10T00:00:00"
              }
            ],
            "gender": {
              "code": "M",
              "description": "Male"
            },
            "taxCode": "SCRLCU73R02H501H",
            "birthDate": "1973-10-02T00:00:00",
            "age": 49,
            "birthTown": "ROME (RM)",
            "isLegalRepresentative": true
          },
          {
            "companyName": "OPEN HOLDING SRL",
            "roles": [
              {
                "role": {
                  "code": "SOU",
                  "description": "Sole Owner"
                },
                "roleStartDate": "2022-12-05T00:00:00"
              }
            ],
            "taxCode": "16935371001",
            "isLegalRepresentative": false
          },
          {
            "name": "SIMONE",
            "surname": "DESANTIS",
            "roles": [
              {
                "role": {
                  "code": "PP",
                  "description": "Special Representative/Agent"
                },
                "roleStartDate": "2013-10-17T00:00:00"
              }
            ],
            "gender": {
              "code": "M",
              "description": "Male"
            },
            "taxCode": "DSNSMN80M11L117F",
            "birthDate": "1980-08-11T00:00:00",
            "age": 42,
            "birthTown": "TERNI (TR)",
            "isLegalRepresentative": false
          },
          {
            "name": "SHAUN",
            "surname": "DE LUCIA",
            "roles": [
              {
                "role": {
                  "code": "PP",
                  "description": "Special Representative/Agent"
                },
                "roleStartDate": "2013-10-17T00:00:00"
              }
            ],
            "gender": {
              "code": "M",
              "description": "Male"
            },
            "taxCode": "DLCSHN77S29Z114J",
            "birthDate": "1977-11-29T00:00:00",
            "age": 45,
            "birthTown": "STOKE ON TRENT (E)",
            "isLegalRepresentative": false
          }
        ],
        "shareholders": [
          {
            "shareholdersInformation": [
              {
                "taxCode": "16935371001",
                "openapiNumber": "IT8A380807S0001",
                "companyName": "OPEN HOLDING SRL",
                "sinceDate": "2022-11-23T00:00:00",
                "streetName": "VIALE FILIPPO TOMMASO MARINETTI 221"
              }
            ],
            "percentShare": 100
          }
        ],
        "companyDetails": {
          "vatCode": "12485671007",
          "taxCode": "12485671007",
          "lastUpdateDate": "2023-03-08T11:25:08.0331456Z",
          "cciaa": "RM",
          "reaCode": "1378273",
          "companyName": "OPENAPI SRL",
          "officeType": {
            "code": "SSL",
            "description": "Administrative Office and Headquarters"
          },
          "openapiNumber": "IT93E20F0DS0001"
        },
        "address": {
          "streetName": "VIALE FILIPPO TOMMASO MARINETTI, 221",
          "zipCode": "00143",
          "town": "ROME",
          "province": {
            "code": "RM",
            "description": "ROME"
          },
          "region": {
            "code": "12",
            "description": "LAZIO"
          },
          "country": {
            "code": "IT",
            "description": "Italy"
          }
        },
        "branches": {
          "numberOfBranches": 1
          "employees": {
            "employeeRange": {
              "code": "ER4",
              "description": "11 - 20"
            },
            "employee": 15,
            "employeeTrend": 7.14
          },
          "employeesStatistic": {
            "permanentContract": 100,
            "partialTimeContract": 20,
            "fullTimeContract": 80,
            "whiteCollar": 100
          },
          "corporateGroups": {
            "belongsToGroup": true,
            "groupName": "DE LUCIA - SCURIATTI",
            "holdingCompanyName": "LUCA SCURIATTI",
            "nationalParentCompany": {
              "province": {
                "code": "ND99",
                "description": "N. A."
              }
            }
          }        
      },
      "success":  true,
      "message": "",
      "error":  null
    }
    


As indicated, Company Stakeholders is also available in synchronous mode. The endpoint to use is /IT-stakeholders/{vatCode_or_taxCode}, but in this case, the method will be GET. The response is usually returned within a few seconds.

During periods of high traffic, official data sources may experience slower response times. During these peak or maintenance periods, we have allowed for a 30-second timeout for synchronous requests. After this timeout, a unique ID is generated, allowing clients to query the status and get the response when it is available via the endpoint GETcompany.openapi.com/IT-check_id.

The Company Stakeholders service is used by companies wishing to obtain detailed information on all people involved in the organization of the company. Some examples of companies already using the Stakeholders service include banks, investors and venture capitalists, competitors, business partners and suppliers, consulting and market research firms, as well as recruitment companies.

Sign Up

Do you need help?

Haven't found the answer you're looking for?

Fill in all the details, we will get back to you as soon as possible!

Frequently Asked Questions

The Company Stakeholders provides detailed information on executives, partners, and employees of a company through an API. It allows access to key data regarding the organizational structure and professional figures within a company. This service is particularly useful for market analysis, risk assessments, and strategic decisions. Thanks to its ease of integration, it enables companies to improve the management of information related to their stakeholders.

What is the Company Stakeholders ?

For each individual subject, detailed information is available such as:

  • First Name
  • Last Name
  • Role
  • Start Date of Activity
  • Age
  • Tax Code
  • Date and Place of Birth

Regarding partners, it is also possible to know:

  • Ownership Share

Note: Only the list of the first 10 shareholders can be viewed.

Additionally, the dataset is enriched with information on employees, including:

  • Total Number of Employees
  • Trend compared to the previous year
  • Type of Contract.
What information can I obtain with the Company Stakeholders ?

Yes, they are certified and constantly updated.

Are the data updated?

Company Shareholders List:

  • Provides a detailed list of the shareholders of an Italian company, including both individuals and legal entities, with information such as name, surname, tax code, and percentage of shares owned.
  • The service is specific to company shareholders, offering details on those who hold ownership stakes of 10% or more.
  • The information is accessible in real-time via API in JSON format.
  • It is particularly useful for those wishing to monitor the shareholding composition and ownership stakes of a company.

Stakeholders Company:

  • IThis service has a broader approach, including not only shareholders but also other relevant figures such as directors, executives, and participants involved in company activities in various capacities.
  • IProvides a comprehensive view of the people and entities that play an active role in the management or ownership of the company.
  • IIn addition to shareholder data, this service provides details on other key company positions, offering a more complete picture of the company’s structure and governance.
  • IIdeal for those needing a comprehensive analysis of the entire organization, going beyond mere ownership monitoring.
What are the main differences between the Company Shareholders List and the Openapi Stakeholders Company products?

The Company Stakeholders is designed for various categories of professionals and organizations, including:

  • Banks
  • Investors
  • Consultants
  • Recruitment companies.

It is particularly useful for those who need detailed and updated information on executives, partners, and employees of companies, such as those evaluating the reliability or profile of an enterprise, or who need to manage due diligence processes and market analysis.

Who is the Company Stakeholders  intended for?

Information is provided via API in real-time, ensuring immediate access to the requested data.

What are the service processing times?

You can opt for subscriptions that offer more convenient rates, starting at €0.095 + VAT per request. Subscriptions have usage limits that vary depending on the type of subscription chosen, ensuring greater flexibility based on needs. Alternatively, the cost for each individual request via recharge is €0.20 + VAT.

What are the costs of the Company Stakeholders ?