POST
/api/v1/tokenizeCoreAnalizza il testo alla ricerca di entità PII e le sostituisce con token reversibili. Supporta tipi di entità specifici per l'Italia: CF, IVA, IBAN e altro.
Corpo della richiesta
{
"text": "string", // required — document text (max 50 000 chars)
"entity_types": ["string"] // optional — filter to specific types
}Risposta
{
"sanitized_text": "string",
"entities": [
{
"type": "PERSON | CF | IVA | IBAN | EMAIL | PHONE | ADDRESS | DATE | ORG | OTHER",
"original": "string",
"token": "string",
"start": 0,
"end": 0
}
],
"token_count": 0,
"latency_ms": 0
}