Skip to content

Country Risk

Endpoints for retrieving country risk information.

Return Country Risk Details Of A Given Country

Request

Returns country risk details for a given country code, including AML, ESG, sovereign, and supply chain indicators when data is available. Fields that evaluate to null in backend processing may be omitted from the customer response payload.

Security
bearerToken
Path
countryCodestringrequired

The code of the country.

curl -i -X GET \
  'https://connect.sandbox.creditsafe.com/v1/compliance/countryRisk/{countryCode}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Country risk response for the requested country.

Bodyapplication/json
correlationIdstring, (uuid)required

Correlation ID for request tracing.

Example:"f563b6bc-549f-4d4a-95bc-c658b407bd2f"
countryobjectrequired

Country identity and regional metadata.

Example:
{ "countryCodeIso3": "MAF", "countryCodeIso2": "MF", "countryName": "Saint Martin (French part)", "region": "Americas" }
riskobjectrequired

Country risk indicators returned by the service. Nullable indicator fields are included in the schema model, but may be omitted from runtime responses when no value is available.

Example:
{ "oecdMember": false, "worldBankClassification": "High income", "countryRiskIndicatorAml": { "countryRank": 154, "countryUniverse": 249, "dataQualityCategorical": "Poor", "dataQualityNumeric": 2, "euHighRiskFlag": false, "fatfHighRisk": false, "fatfIncreasedMonitoring": false, "riskClassificationCategorical": "High", "riskClassificationNumeric": 4, "score": 42.86 }, "countryRiskIndicatorEsg": { "dataQualityCategorical": "Very Poor", "countryUniverse": 186, "dataQualityNumeric": 1, "riskClassificationCategorical": null, "score": null, "countryRank": null, "riskClassificationNumeric": null }, "countryRiskIndicatorSovereign": { "dataQualityCategorical": "Very Poor", "dataQualityNumeric": 1, "countryUniverse": 184, "riskClassificationCategorical": null, "score": null, "countryRank": null, "riskClassificationNumeric": null }, "countryRiskIndicatorSupplyChainRisk": { "dataQualityCategorical": "Very Poor", "riskClassificationCategorical": "Very Low", "score": 12.63, "countryRank": 18, "countryUniverse": 233, "dataQualityNumeric": 1, "riskClassificationNumeric": 1 } }
Response
{ "correlationId": "f563b6bc-549f-4d4a-95bc-c658b407bd2f", "country": { "countryCodeIso3": "MAF", "countryCodeIso2": "MF", "countryName": "Saint Martin (French part)", "region": "Americas" }, "risk": { "oecdMember": false, "worldBankClassification": "High income", "countryRiskIndicatorAml": {}, "countryRiskIndicatorEsg": {}, "countryRiskIndicatorSovereign": {}, "countryRiskIndicatorSupplyChainRisk": {} } }