February 2023 Update

February 2023 cumulative update


✅ PHONE API: Image analysis

Thanks to our new Image Analysis feature we are now able to extract meaningful information from profile pictures, such as gender, age range etc..

Please note that this feature is available only when at least one profile picture of the user has been found. If no profile picture is available, Image Analysis will not run.

{
    "resolution_id": "...",
    "customer_id": "...",
    "device_request_time": "...",
    "webhook_url": "...",
    "claims": [
        "phone"
    ],
    "value": "...",
    ...
    "image_labels": "Dimples,99.999710083008|Head,99.999710083008|Face,99.999710083008|Person,99.999710083008|Smile,99.633117675781|Happy,99.633117675781|Man,99.616744995117|Adult,99.616744995117|Male,99.616744995117",
    "face1_age_range": "34-42",
    "face1_bounding_box": "0.63215327262878,0.59771698713303,0.15187250077724,0.25094643235207",
    "face1_celebrity_name": "Bruce Dickinson",
    "face1_is_celebrity": true,
    "face1_labels": "Smile,96.364311218262|Gender_Male,99.981483459473|EyesOpen,97.500930786133|MouthOpen,95.655265808105|EMOTION_HAPPY,99.15323638916",
}

✅ PHONE & EMAIL API: Microsoft

The recently released Microsoft PHONE & EMAIL API indicates if the phone number or the email address provided by the user has been found on Microsoft. This will include Office365 and any other Microsoft online product.

This signal includes :

has_office_365: If the phone number/email address provided has been found on Microsoft

{
    "resolution_id": "...",
    "customer_id": "...",
    "device_request_time": "...",
    "webhook_url": "...",
    "claims": [
        "phone"
    ],
    "value": "...",
    ...
    "has_office_365": true
}
{
    "resolution_id": "...",
    "customer_id": "...",
    "device_request_time": "...",
    "webhook_url": "...",
    "claims": [
        "email"
    ],
    "value": "...",
    ...
    "has_office_365": true
}

✅ EMAIL API: Apple

The recently released Apple PHONE API indicates if the phone number or the email address provided by the user has been found on Apple.

This signal includes :

has_apple: If the phone number/email address provided has been found on Apple

{
    "resolution_id": "...",
    "customer_id": "...",
    "device_request_time": "...",
    "webhook_url": "...",
    "claims": [
        "phone"
    ],
    "value": "...",
    ...
    "has_apple": true
}

ℹ️ Resources:

  • For more information about the PHONE API you can read the full docs here
  • For more information about the EMAIL API you can read the full docs here