API Documentation
This API provides information about companies and their compliance with EU Taxonomy climate regulations. The database includes more than 2000 companies.
Use Cases
- Analyze a company's impact on climate change.
- Make predictions of future climate changes.
- Train AI models with climate impact data.
Packages
Companies in the database are categorized into three packages: Public, Enterprise, and Financials.
-
Public Companies
Accessing data for public companies is free of charge.
-
Enterprise Package Companies
To access data for companies in the Enterprise package, users must apply and be accepted into the program. Once accepted, accessing data for each new enterprise company costs an additional 10 credits. This access remains free for the next 6 months after the initial request.
-
Financials Package Companies
Accessing data for companies in the Financials package requires individual negotiation for each client.
Authentication
The EU Taxonomy API requires authentication for all access. This ensures secure and controlled data access for all users. An access token must be provided to interact with the API.
Authenticated Access
To access the API's features and datasets, authentication is mandatory. You must
use
an
access
token, which can be passed either as a query parameter named token
or
in
the
HTTP
header with the key X-Token
.
Obtaining an Access Token
- Register: Begin by registering for access to the API. Provide necessary information such as your organization details and intended use case.
- Email Confirmation: After registration, confirm your email address by following the instructions sent to your inbox.
- Receive Access Token: Once your email is confirmed, your access token will be available on your profile page. This token is unique to your account and must be kept secure.
Using the Access Token
Include the access token in your HTTP requests as follows:
- As a query parameter:
?token=YOUR_ACCESS_TOKEN
- Or as a header:
X-Token: YOUR_ACCESS_TOKEN
Replace YOUR_ACCESS_TOKEN
with the actual token you received upon
email
confirmation.
Token Security
It is crucial to keep your access token secure and confidential. Do not share it with unauthorized parties. If you suspect that your token has been compromised, please contact support immediately to revoke the token and obtain a new one.
Search Companies by Query (JSON)
GET https://sustainabilitydisclosures.com/api/v1/companysearch
Cost:
1 credit. Same request is free of charge for 6 months.
Query Params:
-
query
required
The text to search for matching company names. -
skip
Number of items to skip. -
limit
Number of items to return, max 50.
Response:
- companies: A list of company objects.
- id: The id of the company
- name: The name of the company.
- lei: Legal Entity Identifier of the company
- countryOfDomicile: The country where the company is domiciled.
- fiscalYearEnd: The fiscal year-end date of the company.
- industries: A list of industries associated with the company.
- industry: Name of the industry.
- supersector: Name of the supersector.
- sector: Name of the sector.
- subsector: Name of the subsector.
- tickers: Stock tickers associated with the company.
- isins: International Securities Identification Numbers for the company.
- companyAvailability: Indicates the package the company belongs to (Public, EnterprisePackage, or FinancialsPackage).
- totalCount: The total number of companies that match the query.
Examples:
curl -X GET "https://sustainabilitydisclosures.com/api/v1/companysearch?query=vio&token=ede905ad-fac4-47a4-865b-165d4213fd46" \
-H "accept: application/json"
import requests
url = "https://sustainabilitydisclosures.com/api/v1/companysearch"
headers = {
"accept": "application/json"
}
params = {
"query" : "vio",
"token" : "ede905ad-fac4-47a4-865b-165d4213fd46"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
fetch("https://sustainabilitydisclosures.com/api/v1/companysearch?query=vio&token=ede905ad-fac4-47a4-865b-165d4213fd46", {
method: "GET",
headers: {
"Accept": "application/json"
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
Example Response
{
"companies": [
{
"id": "66a60fbf1a3204a0f1cbc2bb",
"name": "Avio SpA",
"lei": "8156008F25C4B0E7C860",
"countryOfDomicile": "Italy",
"fiscalYearEnd": "31 Dec",
"industries": [
{
"industry": "Industrials",
"supersector": "Capital Goods",
"sector": "Aerospace & Defense",
"subsector": "Aerospace & Defense"
}
],
"tickers": [
"BIT: AVIO",
"AVIO.MI"
],
"isins": [
"IT0005119810"
],
"companyAvailability": "EnterprisePackage"
},
]
}
Get EU Taxonomy Data (JSON)
GET https://sustainabilitydisclosures.com/api/v1/eutaxonomy/data/json
Cost:
Depends on amount of data in result. Same request if free of charge for 6 months, shread with XLSX endpoint.
Query Params:
-
table
required
Type of table to return. Either Revenue, Capex or Opex -
companyName
required
Exact name of company to fetch data for -
token
Token obtained after user confirmation. Note: Without authorization, the API will only return data for certain companies and will not include links. -
fiscalYear
Fiscal year to fetch data for, latest if omitted -
resultType
required
Type of result, either "Normal" or "AsReported". Latter will not include any calculations or normalizations. Default is "Normal"
Response:
- tableType: Specifies the type of financial table. Possible values: Revenue, Opex, or Capex.
- fiscalYear: Indicates the fiscal year for which the data applies.
- reportDate: The publication date of the financial report.
- company: The name of the company from which the data is sourced.
- scale: Defines the scale of the absolute values presented in the report.
- currency: Specifies the currency used for the absolute values.
- objects: An array of objects representing EU Taxonomy data entries. Each entry corresponds to a specific category under the EU Taxonomy Regulation (Regulation (EU) 2020/852).
- name: The name of the data entry or category.
- code: The assigned code(s) for the entry, if applicable.
- absoluteValue/proportionOfTotal/ccmScc/ccaScc/wtrScc/ppcScc/ceScc/bioScc/ccmDnsh/ccaDnsh/wtrDnsh/ppcDnsh/ceDnsh/bioDnsh/minimumSafeguards/previousYearProportion/enabling/transitional: Represents different financial and sustainability indicators related to the taxonomy entry.
- value: The original numerical value reported in the financial statement.
- text: The original textual representation of the value (translated if necessary).
- amendedValue: A modified, calculated, or normalized version of the original value.
- amendedText: A revised or standardized version of the original text.
- link: A direct link to the exact section of the report where the data is sourced from.
Examples:
References to EU Acts:
- The EU taxonomy is part of the European Green Deal and is governed by the EU Taxonomy Regulation (Regulation (EU) 2020/852). This regulation establishes the criteria for determining whether an economic activity is environmentally sustainable. The taxonomy aims to provide transparency to investors and help companies transition to a low-carbon economy.
Notes:
- Category Flags: These flags indicate whether an activity is considered enabling or transitional under the EU taxonomy, with links to the company's report for further details.
This structured response helps stakeholders understand a company's alignment with EU sustainability goals, providing a comprehensive view of its environmental impact and compliance.
curl -X GET "https://sustainabilitydisclosures.com/api/v1/eutaxonomy/data/json?companyName=Adidas&table=Capex&token=ede905ad-fac4-47a4-865b-165d4213fd46" \
-H "accept: application/json"
import requests
url = "https://sustainabilitydisclosures.com/api/v1/eutaxonomy/data/json"
headers = {
"accept": "application/json"
}
params = {
"companyName" : "Adidas",
"table" : "Capex",
"token" : "ede905ad-fac4-47a4-865b-165d4213fd46"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
fetch("https://sustainabilitydisclosures.com/api/v1/eutaxonomy/data/json?companyName=Adidas&table=Capex&token=ede905ad-fac4-47a4-865b-165d4213fd46", {
method: "GET",
headers: {
"Accept": "application/json"
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
Example Responses
{
"tableType": "Capex",
"fiscalYear": 2023,
"reportDate": "4Q2023",
"company": "Adidas",
"scale": 1000000,
"currency": "EUR",
"objects": [
{
"name": "6.5 = Transport by motorbikes, passenger cars and light commercial vehicles",
"code": [
"CCM 6.5"
],
"absoluteValue": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a11655b101216cba01"
},
"proportionOfTotal": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a15a605104216cba01"
},
"ccmScc": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1f870cc01216cba01",
"amendedText": "Y"
},
"ccaScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1e774cb05216cba01"
},
"wtrScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1bf7ccb05216cba01"
},
"ppcScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b284cb05216cba01"
},
"ceScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1a78ccb05216cba01"
},
"bioScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a17f94cb05216cba01"
},
"ccmDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a178a0cc01216cba01"
},
"ccaDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a16fa8cc01216cba01"
},
"wtrDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a147b0cc01216cba01"
},
"ppcDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a13ab8cc01216cba01"
},
"ceDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a12fc0cc01216cba01"
},
"bioDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a107c8cc01216cba01"
},
"minimumSafeguards": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a163d06e01216cba01"
},
"enabling": {
"text": "E",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a102e7ec01216cba01"
}
},
{
"name": "7.3 = Installation, maintenance and repair of energy efficiency equipment",
"code": [
"CCM 7.3"
],
"absoluteValue": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a11655b1011d75ba01"
},
"proportionOfTotal": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a15a6051041d75ba01"
},
"ccmScc": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1f870cc011d75ba01",
"amendedText": "Y"
},
"ccaScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1e774cb051d75ba01"
},
"wtrScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1bf7ccb051d75ba01"
},
"ppcScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b284cb051d75ba01"
},
"ceScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1a78ccb051d75ba01"
},
"bioScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a17f94cb051d75ba01"
},
"ccmDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a178a0cc011d75ba01"
},
"ccaDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a16fa8cc011d75ba01"
},
"wtrDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a147b0cc011d75ba01"
},
"ppcDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a13ab8cc011d75ba01"
},
"ceDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a12fc0cc011d75ba01"
},
"bioDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a107c8cc011d75ba01"
},
"minimumSafeguards": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a163d06e011d75ba01"
},
"enabling": {
"text": "E",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a102e7ec011d75ba01"
}
},
{
"name": "7.7 = Acquisition and ownership of buildings",
"code": [
"CCM 7.7"
],
"absoluteValue": {
"value": 7,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a11655b1012b7bba01"
},
"proportionOfTotal": {
"value": 1,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a15a6051042b7bba01"
},
"ccmScc": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a162716e012b7bba01"
},
"ccaScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1e774cb052b7bba01"
},
"wtrScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1bf7ccb052b7bba01"
},
"ppcScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b284cb052b7bba01"
},
"ceScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1a78ccb052b7bba01"
},
"bioScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a17f94cb052b7bba01"
},
"ccmDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1e2a06e012b7bba01"
},
"ccaDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1d8a86e012b7bba01"
},
"wtrDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b1b06e012b7bba01"
},
"ppcDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1a3b86e012b7bba01"
},
"ceDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a198c06e012b7bba01"
},
"bioDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a171c86e012b7bba01"
},
"minimumSafeguards": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a163d06e012b7bba01"
},
"enabling": {
"text": "E",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a102e7ec012b7bba01"
}
},
{
"name": "CapEx of environmentally sustainable activities (Taxonomy-aligned) (A.1)",
"absoluteValue": {
"value": 7,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a11655b1011284ba01"
},
"proportionOfTotal": {
"value": 1,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a15a6051041284ba01"
},
"ccmScc": {
"value": 1,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1646e51041284ba01",
"amendedValue": 100,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1646e51041284ba015a6051041284ba01"
},
"ccaScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1597651041284ba01"
},
"wtrScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1317e51041284ba01"
},
"ppcScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1248651041284ba01"
},
"ceScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1198e51041284ba01"
},
"bioScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1f19551041284ba01"
},
"ccmDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1e2a06e011284ba01"
},
"ccaDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1d8a86e011284ba01"
},
"wtrDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b1b06e011284ba01"
},
"ppcDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1a3b86e011284ba01"
},
"ceDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a198c06e011284ba01"
},
"bioDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a171c86e011284ba01"
},
"minimumSafeguards": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a163d06e011284ba01"
}
},
{
"name": "Of which enabling",
"absoluteValue": {
"value": 7,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a11655b1013687ba01"
},
"proportionOfTotal": {
"value": 1,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a15a6051043687ba01"
},
"ccmScc": {
"value": 1,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1646e51043687ba01",
"amendedValue": 100,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1646e51043687ba015a6051043687ba01"
},
"ccaScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1597651043687ba01"
},
"wtrScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1317e51043687ba01"
},
"ppcScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1248651043687ba01"
},
"ceScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1198e51043687ba01"
},
"bioScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1f19551043687ba01"
},
"ccmDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1e2a06e013687ba01"
},
"ccaDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1d8a86e013687ba01"
},
"wtrDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b1b06e013687ba01"
},
"ppcDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1a3b86e013687ba01"
},
"ceDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a198c06e013687ba01"
},
"bioDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a171c86e013687ba01"
},
"minimumSafeguards": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a163d06e013687ba01"
},
"enabling": {
"text": "E",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a102e7ec013687ba01"
}
},
{
"name": "Of which transitional",
"absoluteValue": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a11655b101468aba01"
},
"proportionOfTotal": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a15a605104468aba01"
},
"ccmScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1646e5104468aba01"
},
"ccmDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a178a0cc01468aba01"
},
"ccaDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a16fa8cc01468aba01"
},
"wtrDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a147b0cc01468aba01"
},
"ppcDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a13ab8cc01468aba01"
},
"ceDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a12fc0cc01468aba01"
},
"bioDnsh": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a107c8cc01468aba01"
},
"minimumSafeguards": {
"text": "N",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1facfcc01468aba01"
},
"transitional": {
"text": "T",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a129efc101468aba01"
}
},
{
"name": "6.5 = Transport by motorbikes, passenger cars and light commercial vehicles",
"code": [
"CCM 6.5"
],
"absoluteValue": {
"value": 16,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1555357030ca1ba01"
},
"proportionOfTotal": {
"value": 2,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a15a6051040ca1ba01"
},
"ccmScc": {
"text": "EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1257098020ca1ba01"
},
"ccaScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1e774cb050ca1ba01"
},
"wtrScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1bf7ccb050ca1ba01"
},
"ppcScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b284cb050ca1ba01"
},
"ceScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1a78ccb050ca1ba01"
},
"bioScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a17f94cb050ca1ba01"
}
},
{
"name": "7.3 = Installation, maintenance and repair of energy efficiency equipment",
"code": [
"CCM 7.3"
],
"absoluteValue": {
"value": 22,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a155535703f4acba01"
},
"proportionOfTotal": {
"value": 3,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a15a605104f4acba01"
},
"ccmScc": {
"text": "EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a125709802f4acba01"
},
"ccaScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1e774cb05f4acba01"
},
"wtrScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1bf7ccb05f4acba01"
},
"ppcScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b284cb05f4acba01"
},
"ceScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1a78ccb05f4acba01"
},
"bioScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a17f94cb05f4acba01"
}
},
{
"name": "7.7 = Acquisition and ownership of buildings",
"code": [
"CCM 7.7"
],
"absoluteValue": {
"value": 299,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1ae51fe04eeb5ba01"
},
"proportionOfTotal": {
"value": 36,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b35ef805eeb5ba01"
},
"ccmScc": {
"text": "EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a125709802eeb5ba01"
},
"ccaScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1e774cb05eeb5ba01"
},
"wtrScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1bf7ccb05eeb5ba01"
},
"ppcScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b284cb05eeb5ba01"
},
"ceScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1a78ccb05eeb5ba01"
},
"bioScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a17f94cb05eeb5ba01"
}
},
{
"name": "CapEx of Taxonomy-eligible but not environmentally sustainable activities (not Taxonomy-aligned activities) (A.2)",
"absoluteValue": {
"value": 337,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1ae51fe04bec7ba01"
},
"proportionOfTotal": {
"value": 40,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b35ef805bec7ba01"
},
"ccmScc": {
"amendedValue": 100,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1555357030ca1ba01ae51fe04bec7ba01257098020ca1ba0155535703f4acba0125709802f4acba01ae51fe04eeb5ba0125709802eeb5ba01"
},
"ccaScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a159765104bec7ba01"
},
"wtrScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1317e5104bec7ba01"
},
"ppcScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a124865104bec7ba01"
},
"ceScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1198e5104bec7ba01"
},
"bioScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1f1955104bec7ba01"
}
},
{
"name": "A. CapEx of Taxonomy eligible activities (A.1+A.2)",
"absoluteValue": {
"value": 344,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1ae51fe04cecaba01"
},
"proportionOfTotal": {
"value": 41,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b35e0406cecaba01"
},
"ccaScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a159765d04cecaba01"
},
"wtrScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1317e5d04cecaba01"
},
"ppcScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a124865d04cecaba01"
},
"ceScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1198e5d04cecaba01"
},
"bioScc": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1f1955d04cecaba01"
}
},
{
"name": "CapEx of Taxonomy-non-eligible activities",
"absoluteValue": {
"value": 494,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1ae51fe04edd3ba01"
},
"proportionOfTotal": {
"value": 59,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1b35ef805edd3ba01"
}
},
{
"name": "Total (A+B)",
"absoluteValue": {
"value": 838,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1ae51fe0423d7ba01"
},
"proportionOfTotal": {
"value": 100,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522733a1f25cc40723d7ba01"
}
}
]
}
{
"tableType": "Revenue",
"fiscalYear": 2023,
"reportDate": "4Q2023",
"company": "Adidas",
"scale": 1000000,
"currency": "EUR",
"objects": [
{
"name": "Turnover of environmentally sustainable activities (Taxonomy-aligned) (A.1)",
"absoluteValue": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"proportionOfTotal": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a195645104b37cba01"
},
"ccmScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"ccaScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"wtrScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"ppcScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"ceScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"bioScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
}
},
{
"name": "Of which enabling",
"absoluteValue": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"proportionOfTotal": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a195645104b37cba01"
},
"ccmScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"ccaScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"wtrScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"ppcScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"ceScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"bioScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
}
},
{
"name": "Of which transitional",
"absoluteValue": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
},
"proportionOfTotal": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a195645104b37cba01"
},
"ccmScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb101b37cba01"
}
},
{
"name": "Turnover of Taxonomy-eligible but not environmentally sustainable activities (not Taxonomy-aligned activities) (A.2)",
"absoluteValue": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1017a93ba01"
},
"proportionOfTotal": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1956451047a93ba01"
},
"ccmScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1017a93ba01"
},
"ccaScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1017a93ba01"
},
"wtrScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1017a93ba01"
},
"ppcScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1017a93ba01"
},
"ceScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1017a93ba01"
},
"bioScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1017a93ba01"
}
},
{
"name": "A. Turnover of Taxonomy eligible activities (A.1+A.2)",
"absoluteValue": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1018a96ba01"
},
"proportionOfTotal": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a195645d048a96ba01"
},
"ccmScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1018a96ba01"
},
"ccaScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1018a96ba01"
},
"wtrScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1018a96ba01"
},
"ppcScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1018a96ba01"
},
"ceScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1018a96ba01"
},
"bioScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a1cf5bb1018a96ba01"
}
},
{
"name": "Turnover of Taxonomy-non-eligible activities",
"absoluteValue": {
"value": 21427,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a10e545109a99fba01"
},
"proportionOfTotal": {
"value": 100,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a12d61b807a99fba01"
}
},
{
"name": "Total (A+B)",
"absoluteValue": {
"value": 21427,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a10e545109f2a2ba01"
},
"proportionOfTotal": {
"value": 100,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/661a97352b5f2aa6f18c522732a12d61c407f2a2ba01"
}
}
]
}
{
"tableType": "Revenue",
"fiscalYear": 2023,
"reportDate": "4Q2023",
"company": "AIXTRON",
"scale": 1,
"currency": "EUR",
"objects": [
{
"name": "3.1 = Manufacture of renewable energy technologies",
"code": [
"CCM 3.1"
],
"absoluteValue": {
"value": 12813967,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa201"
},
"proportionOfTotal": {
"value": 2,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0bb7c9e03a27fa201"
},
"ccmScc": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea04084e400a27fa201"
},
"ccaScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0b2887a05127f2204"
},
"wtrScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0f58e8903a27fa201"
},
"ppcScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0479b8903a27fa201"
},
"ceScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea01e958903a27fa201"
},
"bioScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea070a18903a27fa201"
},
"ccmDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea05ba7a603127f9e03"
},
"ccaDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea090adbf04127f9e03"
},
"wtrDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea03db5e400a27fa201"
},
"ppcDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08fc1e400a27fa201"
},
"ceDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea066bbe400a27fa201"
},
"bioDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0b8c7e400a27fa201"
},
"minimumSafeguards": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0e1cde400a27fa201"
},
"previousYearProportion": {
"value": 2,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0f7d29e03a27fa201"
},
"enabling": {
"text": "E",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea07bdae400a27fa201"
}
},
{
"name": "3.6 = Manufacture of other low carbon technologies",
"code": [
"CCM 3.6"
],
"absoluteValue": {
"value": 449662824,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea05e6d290a7984a201"
},
"proportionOfTotal": {
"value": 71.4,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0447c8a047984a201"
},
"ccmScc": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea04084e4007984a201"
},
"ccaScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0b2889206fa83e804"
},
"wtrScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0f58e89037984a201"
},
"ppcScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0479b89037984a201"
},
"ceScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea01e9589037984a201"
},
"bioScc": {
"text": "N/EL",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea070a189037984a201"
},
"ccmDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea045a80404b8835c03"
},
"ccaDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0edadd5033c846c05"
},
"wtrDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea03db5e4007984a201"
},
"ppcDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08fc1e4007984a201"
},
"ceDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea066bbe4007984a201"
},
"bioDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0b8c7e4007984a201"
},
"minimumSafeguards": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0e1cde4007984a201"
},
"previousYearProportion": {
"value": 56.5,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea080d28a047984a201"
},
"enabling": {
"text": "E",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea07bdae4007984a201"
}
},
{
"name": "Turnover of environmentally sustainable activities (Taxonomy-aligned) (A.1)",
"absoluteValue": {
"value": 462476791,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea05e6d290a298ea201"
},
"proportionOfTotal": {
"value": 73.4,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0447c8a04298ea201"
},
"ccmScc": {
"value": 73.4,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea06d828a04298ea201",
"amendedValue": 100,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea06d828a04298ea201447c8a04298ea201"
},
"ccaScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2015e6d290a298ea201b2887a05127f22045e6d290a7984a201b2889206fa83e804"
},
"wtrScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2015e6d290a298ea201f58e8903a27fa2015e6d290a7984a201f58e89037984a201"
},
"ppcScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2015e6d290a298ea201479b8903a27fa2015e6d290a7984a201479b89037984a201"
},
"ceScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2015e6d290a298ea2011e958903a27fa2015e6d290a7984a2011e9589037984a201"
},
"bioScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2015e6d290a298ea20170a18903a27fa2015e6d290a7984a20170a189037984a201"
},
"ccmDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea043a63506c28cf105"
},
"ccaDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea032adbf040d8ee003"
},
"wtrDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea03db5e400298ea201"
},
"ppcDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08fc1e400298ea201"
},
"ceDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea066bbe400298ea201"
},
"bioDnsh": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0b8c7e400298ea201"
},
"minimumSafeguards": {
"text": "Y",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0e1cde400298ea201"
},
"previousYearProportion": {
"value": 58.5,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea080d28a04298ea201"
}
},
{
"name": "Of which enabling",
"absoluteValue": {
"amendedValue": 462476791,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea07bdae400a27fa201d46d3d09a27fa2017bdae4007984a2015e6d290a7984a201"
},
"proportionOfTotal": {
"value": 73.4,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0447c8a040093a201"
},
"ccmScc": {
"amendedValue": 100,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2017bdae400a27fa2017bdae4007984a2015e6d290a7984a2014084e400a27fa2014084e4007984a201"
},
"ccaScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2017bdae400a27fa2017bdae4007984a2015e6d290a7984a201b2887a05127f2204b2889206fa83e804"
},
"wtrScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2017bdae400a27fa2017bdae4007984a2015e6d290a7984a201f58e8903a27fa201f58e89037984a201"
},
"ppcScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2017bdae400a27fa2017bdae4007984a2015e6d290a7984a201479b8903a27fa201479b89037984a201"
},
"ceScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2017bdae400a27fa2017bdae4007984a2015e6d290a7984a2011e958903a27fa2011e9589037984a201"
},
"bioScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0d46d3d09a27fa2017bdae400a27fa2017bdae4007984a2015e6d290a7984a20170a18903a27fa20170a189037984a201"
},
"previousYearProportion": {
"value": 58.5,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea080d28a040093a201"
},
"enabling": {
"text": "E",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea07bdae4000093a201"
}
},
{
"name": "Of which transitional",
"absoluteValue": {
"amendedValue": 0
},
"proportionOfTotal": {
"amendedValue": 0
},
"ccmScc": {
"amendedValue": 0
},
"transitional": {
"text": "T",
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0a4e0e400d897a201"
}
},
{
"name": "Turnover of Taxonomy-eligible but not environmentally sustainable activities (not Taxonomy-aligned activities) (A.2)",
"absoluteValue": {
"value": 0,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08571da0172aea201"
},
"proportionOfTotal": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08571da0172aea201"
},
"ccmScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08571da0172aea201"
},
"ccaScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08571da0172aea201"
},
"wtrScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08571da0172aea201"
},
"ppcScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08571da0172aea201"
},
"ceScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08571da0172aea201"
},
"bioScc": {
"amendedValue": 0,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea08571da0172aea201"
}
},
{
"name": "A. Turnover of Taxonomy eligible activities (A.1+A.2)",
"absoluteValue": {
"value": 462476791,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea05e6d290a29b7a201"
},
"proportionOfTotal": {
"value": 73.4,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0447c8a0429b7a201"
},
"ccmScc": {
"value": 73.4,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea06d828a0429b7a201",
"amendedValue": 100,
"amendedLink": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea06d828a0429b7a201447c8a0429b7a201"
},
"previousYearProportion": {
"value": 58.5,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea080d28a0429b7a201"
}
},
{
"name": "Turnover of Taxonomy-non-eligible activities",
"absoluteValue": {
"value": 167403135,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea05e6d290a7ec1a201"
},
"proportionOfTotal": {
"value": 26.6,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0447c8a047ec1a201"
}
},
{
"name": "Total (A+B)",
"absoluteValue": {
"value": 629879926,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea05e6d290aa8c6a201"
},
"proportionOfTotal": {
"value": 100,
"link": "https://pdf.sustainabilitydisclosures.com/App/Coordinates/662c844f93360b3dd81e76274ea0f87b7705a8c6a201"
}
}
]
}
Get EU Taxonomy Data (XLSX)
GET https://sustainabilitydisclosures.com/api/v1/eutaxonomy/data/xlsx
Cost:
Depends on amount of data in result. Same request if free of charge for 6 months, shared with JSON endpoint.
Query Params:
-
table
required
Type of table to return. Either Revenue, Capex or Opex -
companyName
required
Exact name of company to fetch data for -
token
Token obtained after user confirmation. Note: Without authorization, the API will only return data for certain companies and will not include links. -
fiscalYear
Fiscal year to fetch data for, latest if omitted -
resultType
required
Type of result, either "Normal" or "AsReported". Latter will not include any calculations or normalizations. Default is "Normal"
Response:
- An XLSX file containing the requested EU Taxonomy data.
Examples:
curl -X GET "https://sustainabilitydisclosures.com/api/v1/eutaxonomy/data/xlsx?companyName=Adidas&table=Capex&token=ede905ad-fac4-47a4-865b-165d4213fd46" \
-H "accept: application/json"
import requests
url = "https://sustainabilitydisclosures.com/api/v1/eutaxonomy/data/xlsx"
headers = {
"accept": "application/json"
}
params = {
"companyName" : "Adidas",
"table" : "Capex",
"token" : "ede905ad-fac4-47a4-865b-165d4213fd46"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
fetch("https://sustainabilitydisclosures.com/api/v1/eutaxonomy/data/xlsx?companyName=Adidas&table=Capex&token=ede905ad-fac4-47a4-865b-165d4213fd46", {
method: "GET",
headers: {
"Accept": "application/json"
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
List Companies (JSON)
GET https://sustainabilitydisclosures.com/api/v1/companieslist
Cost:
2000 credits. Same request is free of charge for 6 months.
Query Params:
-
skip
Number of items to skip. -
limit
Number of items to return, max 50.
Response:
- companies: A list of company objects.
- id: The id of the company
- name: The name of the company.
- lei: Legal Entity Identifier of the company
- countryOfDomicile: The country where the company is domiciled.
- fiscalYearEnd: The fiscal year-end date of the company.
- industries: A list of industries associated with the company.
- industry: Name of the industry.
- supersector: Name of the supersector.
- sector: Name of the sector.
- subsector: Name of the subsector.
- tickers: Stock tickers associated with the company.
- isins: International Securities Identification Numbers for the company.
- companyAvailability: Indicates the package the company belongs to (Public, EnterprisePackage, or FinancialsPackage).
- totalCount: The total number of companies that match the query.
curl -X GET "https://sustainabilitydisclosures.com/api/v1/companieslist?token=ede905ad-fac4-47a4-865b-165d4213fd46" \
-H "accept: application/json"
import requests
url = "https://sustainabilitydisclosures.com/api/v1/companieslist"
headers = {
"accept": "application/json"
}
params = {
"token" : "ede905ad-fac4-47a4-865b-165d4213fd46"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
fetch("https://sustainabilitydisclosures.com/api/v1/companieslist?token=ede905ad-fac4-47a4-865b-165d4213fd46", {
method: "GET",
headers: {
"Accept": "application/json"
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
Example Response
{
"companies": [
{
"id": "66a60fbf1a3204a0f1cbc2bb",
"name": "Avio SpA",
"lei": "8156008F25C4B0E7C860",
"countryOfDomicile": "Italy",
"fiscalYearEnd": "31 Dec",
"industries": [
{
"industry": "Industrials",
"supersector": "Capital Goods",
"sector": "Aerospace & Defense",
"subsector": "Aerospace & Defense"
}
],
"tickers": [
"BIT: AVIO",
"AVIO.MI"
],
"isins": [
"IT0005119810"
],
"companyAvailability": "EnterprisePackage"
},
]
}