Climate Risk and Resilience Index (CRRI) API
Last updated
Was this helpful?
Was this helpful?
$ curl --location 'https://app.alphageo.ai/api/public/v1/scores?longitude=-97.2805288&latitude=32.7376509&period=2035&scenario=SSP245' \
--header 'Authorization: dse3X8de878c37b2fd6835c52390303fk15fc3'import requests
url = "https://app.alphageo.ai/api/public/v1/scores?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)
{
"identifiers": {
"SCENARIO": "SSP245",
"PERIOD": "2035"
},
"overall_indicators": {
"OVERALL_RISK_SCORE_PCT": 78,
"OVERALL_RAJ_SCORE_PCT": 73,
"OVERALL_RISK_SCORE": 40,
"OVERALL_RAJ_SCORE": 27
},
"heat_stress": {
"HEAT_SCORE": 80,
"HEAT_RAJ_SCORE": 60
},
"inland_flooding": {
"INLAND_SCORE": 10,
"INLAND_RAJ_SCORE": 10
},
"coastal_flooding": {
"COASTAL_SCORE": 0,
"COASTAL_RAJ_SCORE": 0
},
"drought": {
"DROUGHT_SCORE": 30,
"DROUGHT_RAJ_SCORE": 20
},
"hurricane_wind": {
"WIND_SCORE": 80,
"WIND_RAJ_SCORE": 40
},
"wildfire": {
"FIRE_SCORE": 0,
"FIRE_RAJ_SCORE": 0
},
"hail": {
"HAIL_SCORE": 80,
"HAIL_RAJ_SCORE": 60
},
"data_version": "Aug 2024"
}