> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dojah.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Lookup Ghana SSNIT ID

> Verify a Ghanaian SSNIT (social security) number and fetch holder details from the SSNIT database.

### Request

```http [GET] theme={null}
{{baseUrl}}/api/v1/gh/kyc/ssnit
```

### Header

| Header        | Type   | Description                                                                                         |
| ------------- | ------ | --------------------------------------------------------------------------------------------------- |
| AppId         | string | Create an app to get your app ID on dashboard [here](https://app.dojah.io/developers/configuration) |
| Authorization | string | Private/secret key. Use `<key>` not `Bearer <key>`                                                  |

### Query parameter

| Parameter         | Type   | Description                                                     | Required |
| ----------------- | ------ | --------------------------------------------------------------- | -------- |
| id \*             | string | The Voter Number, Application ID, or National ID Number (NIN)   | required |
| full\_name \*     | string | The full name of the document holder                            | required |
| date\_of\_birth\* | string | The date of birth of the document holder in the form yyyy-MM-DD | required |

### Sample response

```json Response theme={null}
{
  "entity": {
    "card_serial": "R1970200019702",
    "date_of_birth": "1980-02-03",
    "full_name": "John Doe Musa",
    "gender": "MALE",
    "id": "C000000000000",
    "is_date_of_birth_match": true,
    "is_full_name_match": true,
    "picture": "iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYA"
  }
}
```

### Response Fields

| Field                             | Type    | Description                                           |
| --------------------------------- | ------- | ----------------------------------------------------- |
| entity                            | object  | Contains the verification response data               |
| entity.card\_serial               | string  | SSNIT card serial number                              |
| entity.date\_of\_birth            | string  | Date of birth of the individual (yyyy-MM-dd)          |
| entity.full\_name                 | string  | Full name of the individual                           |
| entity.gender                     | string  | Gender of the individual                              |
| entity.id                         | string  | SSNIT ID number                                       |
| entity.is\_date\_of\_birth\_match | boolean | Whether the provided date of birth matches the record |
| entity.is\_full\_name\_match      | boolean | Whether the provided name matches the record          |
| entity.picture                    | string  | Base64-encoded photo of the individual                |
