> ## 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 Card

> Verify a Ghana Card (National ID) and fetch holder details from the national identity database.

### Request

```http [GET] theme={null}
{{baseUrl}}/api/v1/gh/kyc/card?id=GHXXXXXXX
```

### 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 Ghana Card (National ID) number | required |

### Sample response

```json Response theme={null}
{
    "entity": {
        "first_name": "JOHN",
        "last_name": "DOE",
        "gender": "M"
    }
}
```

### Response Fields

| Field              | Type   | Description                             |
| ------------------ | ------ | --------------------------------------- |
| entity             | object | Contains the verification response data |
| entity.first\_name | string | First name of the card holder           |
| entity.last\_name  | string | Last name of the card holder            |
| entity.gender      | string | Gender of the individual                |
