KodexakodéxaShieldAPI Reference
https://shield.kodexa.systems/apiPortal →
Transaction Layer

CTF-AI

Coming soon

Counter-Terrorism Financing detection with typology patterns distinct from standard AML. Screens for indicators of terrorist financing including small-value transfers to high-risk regions, crowdfunding patterns, and transactions to entities on counter-terrorism watchlists. Applies FATF Recommendation 5 rules per jurisdiction.

This plugin is in development. The API schema below is planned and subject to change. You can design your integration now using this reference.

Endpoint

POST/api/ctf/screen

Request parameters

ParameterTypeRequiredDescription
transaction_idstringYesYour unique transaction reference.
customer_idstringYesCustomer identifier.
jurisdictionstringYesOne of: CA, AE, SA, GB.
amountnumberYesTransaction amount.
currencystringYesISO 4217 currency code.
counterparty_countrystringNoISO 3166-1 alpha-2 counterparty country.
counterparty_namestringNoCounterparty name.
transaction_typestringNoOne of: transfer, payment, wire, crypto, donation.

Response fields

ParameterTypeRequiredDescription
data.ctf_risk_scoreintegerYesCTF risk score 0–1000.
data.risk_levelstringYeslow, medium, high, or critical.
data.typologies_detectedarrayYesCTF typologies detected, e.g. small_value_to_high_risk_region, crowdfunding_pattern.
data.watchlist_matchbooleanYesWhether counterparty matched a counter-terrorism watchlist.
data.statusstringYesapproved, rejected, or review_required.
data.requires_human_reviewbooleanYesTrue when MLRO escalation is required.
data.ai_recommendationstringYesCompliance recommendation and required reporting steps.

cURL

# Coming soon
curl -X POST \
  https://shield.kodexa.systems/api/ctf/screen \
  -H "Content-Type: application/json" \
  -d '{...}'

Code examples available when plugin launches