curl --request GET \
--url https://api.aries.com/v1/stock/historical-esg \
--header 'Authorization: Bearer <token>'{
"data": [
{
"data": {
"adultContent": false,
"alcoholic": false,
"animalTesting": false,
"antitrust": "14",
"asianEmployeePercentage": 33.22,
"asianManagementPercentage": 34.95,
"blackEmployeePercentage": 8.1,
"blackManagementPercentage": 3.4,
"carbonReductionPolicy": "True",
"catholic": true,
"co2EmissionScope1": 55200,
"co2EmissionScope2": 1224500,
"co2EmissionScope3": 15070900,
"co2EmissionTotal": 1279700,
"coalEnergy": false,
"ecofriendlyPackaging": true,
"environmentalReporting": true,
"firearms": false,
"fuelEfficiencyConsumption": false,
"gambling": false,
"gmo": false,
"hazardousSubstances": true,
"hispanicLatinoEmployeePercentage": 14.27,
"hispanicLatinoManagementPercentage": 7.55,
"humanRightsPolicy": true,
"militaryContract": false,
"nuclear": false,
"pesticides": null,
"recallPolicySafety": false,
"recyclingPolicy": true,
"stakeholderEngagement": true,
"tobacco": false,
"totalWomenPercentage": 35,
"waterEfficiencyConsumption": true,
"whiteEmployeePercentage": 40.54,
"whiteManagementPercentage": 51.31,
"workplaceHealthSafety": true
},
"environmentScore": 61.893806,
"governanceScore": 87.10112,
"period": "2024-09-28",
"socialScore": 61.788643,
"totalESGScore": 70.26119
}
],
"symbol": "AAPL"
}Retrieve historical ESG scores and indicators for 7000+ global companies. Data is collected from public ESG disclosure and public sources.
Use Case: Chart ESG score trends over time or compare historical E/S/G components for a company.
curl --request GET \
--url https://api.aries.com/v1/stock/historical-esg \
--header 'Authorization: Bearer <token>'{
"data": [
{
"data": {
"adultContent": false,
"alcoholic": false,
"animalTesting": false,
"antitrust": "14",
"asianEmployeePercentage": 33.22,
"asianManagementPercentage": 34.95,
"blackEmployeePercentage": 8.1,
"blackManagementPercentage": 3.4,
"carbonReductionPolicy": "True",
"catholic": true,
"co2EmissionScope1": 55200,
"co2EmissionScope2": 1224500,
"co2EmissionScope3": 15070900,
"co2EmissionTotal": 1279700,
"coalEnergy": false,
"ecofriendlyPackaging": true,
"environmentalReporting": true,
"firearms": false,
"fuelEfficiencyConsumption": false,
"gambling": false,
"gmo": false,
"hazardousSubstances": true,
"hispanicLatinoEmployeePercentage": 14.27,
"hispanicLatinoManagementPercentage": 7.55,
"humanRightsPolicy": true,
"militaryContract": false,
"nuclear": false,
"pesticides": null,
"recallPolicySafety": false,
"recyclingPolicy": true,
"stakeholderEngagement": true,
"tobacco": false,
"totalWomenPercentage": 35,
"waterEfficiencyConsumption": true,
"whiteEmployeePercentage": 40.54,
"whiteManagementPercentage": 51.31,
"workplaceHealthSafety": true
},
"environmentScore": 61.893806,
"governanceScore": 87.10112,
"period": "2024-09-28",
"socialScore": 61.788643,
"totalESGScore": 70.26119
}
],
"symbol": "AAPL"
}| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Stock ticker symbol (e.g. AAPL). |
200 OK with a JSON object typically containing a data array of historical ESG entries (e.g. period, environmentScore, governanceScore, socialScore, totalESGScore, and nested data fields), and symbol.
Errors: 400 when symbol is missing, 401 unauthorized, 404 when no data found, 500 server error.Was this page helpful?