Welcome, and thanks for checking out our web demo!
The purpose of this demo is to show off our system's capabilities for text identification and redaction, and we invite you to type some text into the box below to see it in action.
But before you do, a few things to note:
And that API call example we promised is here:
$ curl -X POST localhost:8080/deidentify_text -H 'content-type: application/json' -d '{"text": "My name is John and my friend is Grace", "key": "<Your API Key>"}'
{
"api_calls_used":1,
"output_checks_passed":true,
"pii":[
{
"marker":"NAME_1",
"text":"John",
"stt_idx":11,
"end_idx":15,
"best_label":"NAME",
"labels":
{
"NAME":0.9125
}
},
{
"marker":"NAME_2",
"text":"Grace",
"stt_idx":33,
"end_idx":38,
"best_label":"NAME",
"labels":
{
"NAME":0.8747
}
}
],
"result": "My name is [NAME_1] and my friend is [NAME_2]"
}
Contact us for a trial API key.