Our prices
Price list for single API calls
- Company Legal Form € 0,00 + vat
Get the complete list of all legal forms of Italian companies in real time and free of charge
The service allows you to get specific information on the legal form of a company, via API and in real time.
Legal Forms is a service of the API Company and allows access to the full list of legal forms of Italian companies or from the legal form code (e.g. SP) to obtain the full description (Società per Azioni).
The Legal Forms service has two endpoints:
With Forma Giuridica (/IT-legalforms) you get the list and code of all legal forms of business (i.e. the organisational, administrative, fiscal and accounting model with which a business is conducted, according to the rules of the Civil Code). In Italy there are different forms, to which specific legal codes correspond. Here are some examples:
Enterprises Legal Form is identified by the endpoint: GET https://company.openapi.com/IT-legalforms
The response is in real time.
This is an example of a request
https://company.openapi.com/IT-legalforms
The response provides the complete list of acronyms and legal forms:
{
"data": [
{
"code": "AA",
"description": "SOCIETA' IN ACCOMANDITA PER AZIONI"
},
{
"code": "AN",
"description": "SOCIETA' CONSORTILE IN NOME COLLETTIVO"
},
{
"code": "EI",
"description": "ENTE IMPRESA"
},
{
"code": "RR",
"description": "SOCIETA' A RESPONSABILITA' LIMITATA A CAPITALE RIDOTTO"
}
],
"success": true,
"message": "",
"error": null
}
The response list is only an example and is not complete.
The Legal Form Code service provides information on the legal form of a company. This data is made available from the Legal Form Code parameter, which is provided via API and in real time.
Company Legal Form Code is identified by the endpoint: GET https://company.openapi.com//IT-legalforms/{code}
The response is in real time.
The call can be made by entering 'code' as a starting parameter (e.g. SP).
https://company.openapi.com/IT-legalforms/SP
The response provides details on:
{ "data": [ { "code": "SP", "decription": "SOCIETA' PER AZIONI" }, "success": true, "message": "", "error": null }