# SSNIT with Face

## Verify a Social Security and National Insurance Trust Number with face validation

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}/api/v2/biometrics/merchant/data/verification/gh/ssnit/face`

#### Headers

| Name                                        | Type   | Description     |
| ------------------------------------------- | ------ | --------------- |
| x-api-key<mark style="color:red;">\*</mark> | String | your secret key |
| app-id<mark style="color:red;">\*</mark>    | String | your app id     |

#### Request Body

| Name                                     | Type   | Description                 |
| ---------------------------------------- | ------ | --------------------------- |
| number<mark style="color:red;">\*</mark> | String | ssnit number                |
| image<mark style="color:red;">\*</mark>  | String | face image(base64,png, jpg) |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{ 
    "status": true, 
    "response_code": "00", 
    "message": "SSNIT Information retrieved", 
    "face_data": {
        "status": true,
        "response_code": "00",
        "message": "Face Match",
        "confidence":99.9
    },
    "data": { 
        "FSSNo": "", 
        "FullName": "", 
        "BirthDate": "", 
        "Sex": "", 
        "CardSerial": "", 
        "Photo": "base64Image",
    },
    "verification": {
        "status": "",
        "reference": ""
    }
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.myidentitypass.com/products/data-verification/ghana/ssnit/ssnit-with-face.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
