AlphaGeo Public Docs
  • Welcome
  • Product Guides
    • Climate Risk and Resilience Index
      • Methodology (1/3): Resilience-adjusted Risk Framework
      • Methodology (2/3): Global Adaptation Layer
      • Methodology (3/3): Indexing
      • Data Sources
      • AlphaGeo versus the Market: Climate Risk & Resilience Index
    • Financial Impact Analytics
      • Methodology
      • Use Case: AlphaGeo for Climate-adjusted Valuation
    • Location Dynamism Signals
    • Pricing
  • Platform guides
    • Trial
    • Location Explorer
    • Portfolio Analytics
      • Data Manager
      • Data Filter
      • Analytics
      • Multi-asset Heatmap
      • Single-asset Property Map
      • Sharing Analytics
    • Admin Panel
  • Data Access and Delivery
  • SAMPLE USE CASES
    • AlphaGeo for Regulatory Disclosures
    • AlphaGeo for Asset Valuation
  • For Developers
    • Data APIs
      • Global Climate Risk Index API
      • Global Adaptation Layers Risk API
      • Global Adaptation Layers Resilience API
      • Climate Financial Impact API
    • Data Dictionary
    • Snowflake Native Application
Powered by GitBook
On this page
  • Endpoint
  • Parameters
  • Example Requests
  • Example Response
  1. For Developers
  2. Data APIs

Global Climate Risk Index API

The Scores API allows you to retrieve physical climate risk and resilience-adjusted risk scores for any location globally.

Endpoint

 https://app.alphageo.ai/api/public/v1/scores

Parameters

Parameters
Required
Type
Description

address

string

Full address of the location

period

string

Time period.

Available values : 2025, 2035, 2050, 2100

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/scores?longitude=-97.2805288&latitude=32.7376509&period=2035&scenario=SSP245' \
--header 'Authorization: dse3X8de878c37b2fd6835c52390303fk15fc3'

Python

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)

Example Response

A successful response containing physical climate risk and resilience-adjusted risk scores of the given location.

{
   "identifiers":{
      "SCENARIO":"SSP245",
      "PERIOD":"2035"
   },
   "overall_indicators":{
      "OVERALL_RISK_SCORE":15.0,
      "OVERALL_RAJ_SCORE":11.0
   },
   "heat_stress":{
      "HEAT_SCORE":37.0,
      "HEAT_RAJ_SCORE":86.0
   },
   "inland_flooding":{
      "INLAND_SCORE":34.0,
      "INLAND_RAJ_SCORE":6.0
   },
   "coastal_flooding":{
      "COASTAL_SCORE":0.0,
      "COASTAL_RAJ_SCORE":0.0
   },
   "drought":{
      "DROUGHT_SCORE":52.0,
      "DROUGHT_RAJ_SCORE":4.0
   },
   "hurricane_wind":{
      "WIND_SCORE":0.0,
      "WIND_RAJ_SCORE":0.0
   },
   "wildfire":{
      "FIRE_SCORE":0.0,
      "FIRE_RAJ_SCORE":0.0
   },
   "data_version":"March 2024"
}
PreviousData APIsNextGlobal Adaptation Layers Risk API

Last updated 7 months ago