Purpose
Presents the list of regions, sub regions and countries in a “tree” view. The tree is derived from the location of companies in our private infrastructure universe.
Endpoint
GET
/compute-service/v2/pi-comparables/region-tree/{asset-class}
Parameters
-
asset-class (string, required):
Asset class to be queried.
Supported values are:"equity", "debt",
Example
-
Response
JSON{ "data": { "results": [ { "value": "AMR", "label": "Americas", "children": [ { "value": "NAM", "label": "Northern America", "children": [ { "value": "CAN", "label": "Canada" }, { "value": "USA", "label": "United States" } ], "popularity": 1 }, ... ], "popularity": 1 }, { "value": "EUR", "label": "Europe", "children": [ { "value": "WEU", "label": "Western Europe", "children": [ { "value": "AUT", "label": "Austria" }, { "value": "BEL", "label": "Belgium" }, { "value": "FRA", "label": "France" }, { "value": "DEU", "label": "Germany" }, { "value": "NLD", "label": "Netherlands" } ], "popularity": 1 }, { "value": "NEU", "label": "Northern Europe", "children": [ { "value": "DNK", "label": "Denmark" }, { "value": "FIN", "label": "Finland" }, { "value": "IRL", "label": "Ireland" }, { "value": "NOR", "label": "Norway" }, { "value": "SWE", "label": "Sweden" }, { "value": "GBR", "label": "United Kingdom" } ], "popularity": 2 }, { "value": "EEU", "label": "Eastern Europe", "children": [ { "value": "POL", "label": "Poland" }, { "value": "SVK", "label": "Slovakia" } ], "popularity": 3 }, { "value": "SEU", "label": "Southern Europe", "children": [ { "value": "ITA", "label": "Italy" }, { "value": "PRT", "label": "Portugal" }, { "value": "ESP", "label": "Spain" } ], "popularity": 4 } ], "popularity": 2 }, ... ] } }