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
- Sandbox serverhttps://connect.sandbox.creditsafe.com/v1/compliance/countryRisk/{countryCode}
- Production serverhttps://connect.creditsafe.com/v1/compliance/countryRisk/{countryCode}
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/compliance/countryRisk/{countryCode}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Country risk response for the requested country.
Correlation ID for request tracing.
Example:"f563b6bc-549f-4d4a-95bc-c658b407bd2f"
Country identity and regional metadata.
Example:
{ "countryCodeIso3": "MAF", "countryCodeIso2": "MF", "countryName": "Saint Martin (French part)", "region": "Americas" }
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": { … } } }