Analyzer
Analyze Text
Recognizes PII entities in a given text and returns their types, locations and score
post/analyze
Request body
Example request
{
"language": "en",
"entities": [
"PERSON"
],
"context": [
"address"
]
}Response
OK
Example response
[
{
"start": 24,
"end": 32,
"score": 0.8,
"entity_type": "PERSON"
}
]