Risk score models

GET /configuration/riskscoremodels/

Get risk score models.

Responses

  • 200

    A list of risk score models.

    Hide response attributes Show response attributes array[object]
    • title string

      Title

    • Description

    • source string

      Source

    • code string

      Code (see values below) or custom code (if you have access to bespoke risk scores)

      Values are aml, esg, sdg, sovereign, or supplychainrisk.

GET /configuration/riskscoremodels/
curl \
 -X GET https://app.countryrisk.io/api/v1/configuration/riskscoremodels/ \
 -H "Authorization: $API_KEY"
Response examples (200)
[
  {
    "source": "CountryRisk.io Ltd",
    "code": "sovereign",
    "description": "Sovereign Risk Score",
    "title": "CountryRisk.io Sovereign Risk Score"
  },
  {
    "source": "CountryRisk.io Ltd",
    "code": "esg",
    "description": "ESG Risk Score",
    "title": "CountryRisk.io ESG Risk Score"
  },
  {
    "source": "CountryRisk.io Ltd",
    "code": "sdg",
    "description": "The SDG Index and Dashboards Report is the first worldwide study to assess where each country stands with regard to achieving the Sustainable Development Goals (SDGs) ...",
    "title": "CountryRisk.io SDG Index"
  },
  {
    "source": "CountryRisk.io Ltd",
    "code": "aml",
    "description": "Anti-Money Laundering Country Risk Score",
    "title": "CountryRisk.io AML Risk Score"
  },
  {
    "source": "CountryRisk.io Ltd",
    "code": "supplychainrisk",
    "description": "Supply Chain Country Risk Score",
    "title": "CountryRisk.io Supply Chain Country Risk Score"
  }
]