For the complete documentation index, see llms.txt. This page is also available as Markdown.

Portfolio Scores API

The Portfolio Scores API endpoint allows you to retrieve aggregated (averaged) climate risk, resilience-adjusted risk, and financial impact metrics across all assets within your institution's portfolios.

You can also restrict the aggregation to specific portfolios using optional query filters.

Endpoint

GET https://app.alphageo.ai/api/public/v1/portfolio

Parameters

Parameters
Required
Type
Description

tier_one_names

string

Comma-separated names of Tier 1 portfolios to include. Example: Fund A,Fund B. If omitted, averages are calculated across all assets in all portfolios.

period

string

Time period.

Available values : 2025, 2035, 2050, 2100

scenario

string

Identifier for CMIP6 Emission Scenarios.

Available values : SSP245, SSP370, SSP585

Example requests

cURL

$ curl --location 'https://app.alphageo.ai/api/public/v1/portfolio?period=2035&scenario=SSP245' \
--header 'Authorization: dse3X8de878c37b2fd6835c52390303fk15fc3'

Python

import requests

url = "https://app.alphageo.ai/api/public/v1/portfolio?period=2035&scenario=SSP245"

payload = {}
headers = {
  'Authorization': 'dse3X8de878c37b2fd6835c52390303fk15fc3'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)

Example response

Note: The fields from insurance down to insurability will only be present if your institution has access to the Financial Impact Analytics module.

Last updated

Was this helpful?