Scan for Personal Data Entities

This API identifies personal data elements (e.g., names, email addresses, phone numbers, etc.) within the input values.

Method: PUT

ROUTE: /pii-identification

For authentication, include the following token in the request headers:

Headers: {“Authorization”: “Bearer <AUTH_TOKEN>”}

Note: To obtain the <auth token>, please refer to the Step-by-Step Guide to Obtain Your Auth Token.

Request Payload : #

{
"data":[
{
"value": "John Doe, an American, can be reached via email at johndoe@example.com or phone at +1-123-456-7890; his portfolio is available at www.johndoeportfolio.com, and he resides at 123 Elm Street, Springfield, IL, USA.."
},
{
"value": "Jane Smith, a British citizen, lives at 45 Baker Street, London, UK; she can be contacted at jane.smith@domain.com or on +44-20-7946-0958, with more details on her website www.janesmith.me."
},
{
"value": "An individual of international background maintains a professional presence online and can be reached through standard communication channels."
}
]
}

Response: #

{
    "data": [
        {
            "value": "John Doe, an American, can be reached via email at johndoe@example.com or phone at +1-123-456-7890; his portfolio is available at www.johndoeportfolio.com, and he resides at 123 Elm Street, Springfield, IL, USA..",
            "identified_entities": [
                {
                    "value": "John Doe",
                    "pii_type": "PERSON",
                    "start_pos": 0,
                    "end_pos": 8
                },
                {
                    "value": "American",
                    "pii_type": "NATIONALITY",
                    "start_pos": 13,
                    "end_pos": 21
                },
                {
                    "value": "johndoe@example.com",
                    "pii_type": "EMAIL_ADDRESS",
                    "start_pos": 51,
                    "end_pos": 70
                },
                {
                    "value": "+1-123-456-7890",
                    "pii_type": "PHONE_NUMBER",
                    "start_pos": 83,
                    "end_pos": 98
                },
                {
                    "value": "www.johndoeportfolio.com",
                    "pii_type": "URL",
                    "start_pos": 130,
                    "end_pos": 154
                },
                {
                    "value": "123 Elm Street",
                    "pii_type": "ADDRESS",
                    "start_pos": 174,
                    "end_pos": 188
                },
                {
                    "value": "Springfield",
                    "pii_type": "ADDRESS",
                    "start_pos": 190,
                    "end_pos": 201
                },
                {
                    "value": "IL",
                    "pii_type": "ADDRESS",
                    "start_pos": 203,
                    "end_pos": 205
                },
                {
                    "value": "USA.",
                    "pii_type": "ADDRESS",
                    "start_pos": 207,
                    "end_pos": 211
                }
            ]
        },
        {
            "value": "Jane Smith, a British citizen, lives at 45 Baker Street, London, UK; she can be contacted at jane.smith@domain.com or on +44-20-7946-0958, with more details on her website www.janesmith.me.",
            "identified_entities": [
                {
                    "value": "Jane Smith",
                    "pii_type": "PERSON",
                    "start_pos": 0,
                    "end_pos": 10
                },
                {
                    "value": "British",
                    "pii_type": "NATIONALITY",
                    "start_pos": 14,
                    "end_pos": 21
                },
                {
                    "value": "45 Baker Street",
                    "pii_type": "ADDRESS",
                    "start_pos": 40,
                    "end_pos": 55
                },
                {
                    "value": "London",
                    "pii_type": "ADDRESS",
                    "start_pos": 57,
                    "end_pos": 63
                },
                {
                    "value": "UK",
                    "pii_type": "ADDRESS",
                    "start_pos": 65,
                    "end_pos": 67
                },
                {
                    "value": "jane.smith@domain.com",
                    "pii_type": "EMAIL_ADDRESS",
                    "start_pos": 93,
                    "end_pos": 114
                },
                {
                    "value": "+44-20-7946-0958",
                    "pii_type": "PHONE_NUMBER",
                    "start_pos": 121,
                    "end_pos": 137
                },
                {
                    "value": "www.janesmith.me",
                    "pii_type": "URL",
                    "start_pos": 172,
                    "end_pos": 188
                }
            ]
        },
        {
            "value": "An individual of international background maintains a professional presence online and can be reached through standard communication channels.",
            "identified_entities": []
        }
    ],
    "success": true,
    "error": {
        "message": ""
    }
}

 

Updated on May 13, 2025
What are your feelings

© All Rights Reserved 2023 | Protecto

Table of contents