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

# Angola National ID

> Verify an Angolan National ID and fetch holder details from the national civil registry.

### Request

```http [GET] theme={null}
{{baseURL}}/api/v1/ao/kyc/nin
```

### 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 | Angolan National ID Number | required |

### Sample request

```json Response theme={null}

{
    "entity": {
        "first_name": "JOHN",
        "last_name": "MUSA",
        "id_number": "001234567898665",
        "active": "Ativo"
    }
}
```

### Response Fields

| Field              | Type   | Description                                 |
| ------------------ | ------ | ------------------------------------------- |
| entity             | object | Contains the verification response data     |
| entity.first\_name | string | First name of the ID holder                 |
| entity.last\_name  | string | Last name of the ID holder                  |
| entity.id\_number  | string | Angolan National ID Number                  |
| entity.active      | string | Status of the ID (e.g., "Ativo" for active) |
