Climate Financial Impact API
This endpoint provides data for real estate cashflow modelling. The metrics translate climate risk and resilience features into various cashflow items such as rate of increase in insurance, projected utility costs, and discount rates.
Endpoint
https://app.alphageo.ai/api/public/v1/analytics
Parameters
Parameters
Required
Type
Description
address
string
Full address of the location
scenario
string
Identifier for CMIP6 Emission Scenarios.
Available values : SSP245, SSP370, SSP585
longitude
number
Longitude of the location that being queried.
latitude
number
Latitude of the location that being queried.
Example Requests
cURL
$ curl --location 'https://app.alphageo.ai/api/public/v1/analytics?longitude=-97.2805288&latitude=32.7376509&period=2035&scenario=SSP245' \
--header 'Authorization: dse3X8de878c37b2fd6835c52390303fk15fc3'
Python
import requests
url = "https://app.alphageo.ai/api/public/v1/analytics?longitude=-97.2805288&latitude=32.7376509&period=2035&scenario=SSP245"
payload = {}
headers = {
'Authorization': 'dse3X8de878c37b2fd6835c52390303fk15fc3'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
Example Response
A successful response containing analytics of the given location.
{
"identifiers": {
"SCENARIO": "SSP245"
},
"insurance": {
"INS_RATE_FIRE": 0.98,
"INS_RATE_FLOOD": 0.0,
"INS_RATE_TOTAL": 0.98
},
"utility": {
"UTIL_RATE_COOLING": 0.87,
"UTIL_RATE_HEATING": -0.0,
"UTIL_RATE_TOTAL": 0.87
},
"capex": {
"CAPEX_FIRE": 0.59,
"CAPEX_FLOOD": 0.0,
"CAPEX_CDD": 2.75,
"CAPEX_TOTAL": 3.34
},
"discount": {
"10_YEAR_DISCOUNT": 1.08,
"25_YEAR_DISCOUNT": 0.97,
"75_YEAR_DISCOUNT": 0.8
},
"data_version": "Aug 2024"
}
Last updated