FastPII Docs
Detectors

Health Insurance

Detect Czech health insurance codes.

Purpose

Use the health_insurance detector for Czech health insurance company codes.

This detector matches Czech health insurance codes (kod pojistovny), which are 3-digit numbers identifying specific insurance companies.

Detector Name

health_insurance

Region: cz

Supported Formats

  • 3-digit codes: 111, 201, 205, 207, 209, 211, 213

These correspond to Czech health insurance companies.

Usage

from fastpii import FastPII, DEFAULT_PRIORITY
from fastpii.countries.cz import CzechPack

engine = FastPII(priority=DEFAULT_PRIORITY)
engine.register(CzechPack())

result = engine.detect("Pojistovna 111")

Validation

result = engine.validate("111", "health_insurance")
# result.is_valid → True

On this page