CompanyBelgium

CTIF Belgium: How to Report Suspicious Transactions

Complete guide on reporting suspicious transactions to CTIF. Warning indicators, reporting process, legal obligations and sanctions for non-compliance.

April 4, 202611 min read

In brief

The CTIF (Financial Intelligence Processing Unit) is the Belgian financial intelligence unit that receives suspicious transaction reports from regulated entities. For domiciliation centers, reporting is an absolute legal obligation under penalty of fines up to 5 million euros. When in doubt, report: the law protects you with civil and criminal immunity for any report made in good faith.

Introduction: Reporting Suspicious Transactions, an AML Pillar

The Financial Intelligence Processing Unit (CTIF-CFI) is Belgium's financial intelligence unit responsible for combating money laundering and terrorist financing.

For domiciliation centers, reporting a suspicious transaction to CTIF is an absolute legal obligation under penalty of €5 million fine and imprisonment from 6 months to 5 years.

> ⚠️ Golden rule: When in doubt, report it! CTIF prefers 10 "clean" reports over one unreported laundering operation.

CTIF: Mission and Key Figures

2025 Statistics:

  • 53,742 reports received (+12% vs 2024)
  • 2,347 files transmitted to Prosecutor
  • Transmission rate: 4.4%

When to Report?

Report when you suspect a transaction involves money laundering, terrorist financing, or crime proceeds.

Money Laundering Indicators

Suspicious client behavior:

  • ❌ Reluctant to provide KYC info
  • ❌ Falsified ID documents
  • ❌ Frequent UBO/director changes
  • ❌ Use of nominees

Unusual transactions:

  • 💰 Amounts disproportionate to activity
  • 💰 Structuring below €10k threshold
  • 💰 Circular money flows

Concrete examples:

  • Restaurant with €300k cash deposit but €15k/month turnover → ✅ Report
  • Offshore holding refuses UBO disclosure → ✅ Report + refuse

How to Report via goAML?

TypeScript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
async function evaluateSuspicion(client: Client) {
  const indicators: SuspicionIndicator[] = [];
  
  class="code-comment">// Checks via Company Belgium
  const companyData = await companyBelgiumClient.companies.get(client.enterpriseNumber);
  
  if (!companyData.addresses) {
    indicators.push({
      severity: class="code-string">'HIGH',
      description: class="code-string">'No CBE address',
    });
  }
  
  class="code-comment">// Sanctions screening
  const sanctions = await screeningSanctions(client);
  if (sanctions.matches.length > 0) {
    indicators.push({
      severity: class="code-string">'CRITICAL',
      description: class="code-string">'Sanctions match',
    });
  }
  
  const score = calculateSuspicionScore(indicators);
  return { requiresCTIFReport: score >= 70 };
}

Steps:

  • Internal detection: use code above
  • Consultation: Compliance Officer + Management
  • Submit: goaml.ctif-cfi.be via eID
  • Proof: Keep receipt 10 years
  • > ⚠️ Tipping-off prohibited: NEVER inform client about report!

    After Reporting

    3 scenarios:

    • Dismissal (96%): No laundering, continue relationship
    • More info (small %): CTIF requests clarification
    • Prosecution (4%): Investigation started, you have immunity

    Your Protection

    Criminal immunity

    Civil immunity

    Identity protection

    Sanctions for Non-Reporting

    • Fines: €50k to €5M
    • Prison: 6 months to 5 years
    • License withdrawal

    Conclusion

    Train your teams and use Company Belgium for automated detection.

    ---

    Related articles:

    Frequently asked questions

    When is a Belgian domiciliation center required to report a transaction to the CTIF?

    The reporting obligation arises as soon as there is a reasonable suspicion that the transaction is linked to money laundering, terrorist financing, or a crime generating a patrimonial advantage. Suspicion is enough, proof is not required. The obligation also applies to refused or not-yet-executed transactions. When in doubt, the golden rule is to report.

    How to draft and submit a suspicious transaction report to the CTIF?

    The report is submitted exclusively via the online goAML platform provided by CTIF, accessible at goaml.ctif-cfi.be with eID or itsme authentication. The report must identify the reporting entity, the suspect client, describe the transactions chronologically, cite the concrete indicators observed, and attach supporting documents. It must be transmitted without delay, ideally within 48 to 72 hours.

    What does a domiciliation center risk if it fails to report a suspicious transaction to the CTIF?

    Failure to comply with the reporting obligation exposes the entity to administrative fines ranging from 50,000 to 5 million euros (or 10 % of turnover), suspension or withdrawal of the domiciliation licence, and publication of the sanction. Criminal sanctions also apply in case of intent, up to 5 years imprisonment for the responsible natural persons.

    Is the domiciliation center protected if it reports a transaction that turns out not to be money laundering?

    Yes, Belgian law guarantees civil immunity (no client damages claim), criminal immunity (no prosecution for breach of professional secrecy) and disciplinary immunity for any report made in good faith, even if the CTIF analysis does not confirm the initial suspicion. The reporter's identity remains confidential in the judicial file.

    Ready to get started?

    Create your free account and get your API keys in minutes.

    Comments

    Loading comments…

    Leave a comment

    Not published — used only to notify you.

    Comments are moderated before publication.

    Related articles