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

# Zambia National Registration Card

> Verify a Zambian National Registration Card (NRC) and fetch holder details from the national registry.

### Request

```http [GET] theme={null}
{{baseURL}}/api/v1/zm/kyc/nrc
```

### 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 |
| --------- | ------ | -------------------------- | -------- |
| nrc       | string | National Registration Card | required |

### Sample response

```json Response theme={null}
{
    "entity": {
        "taxpayer_name": "John Doe",
        "current_status": "ACTIVE",
        "is_deregistered": 0,
        "tax_types": "",
        "nrc": "123456/78/9",
        "tpin": "1234567890"

    }
}
```

### Response Fields

| Field                   | Type   | Description                                                  |
| ----------------------- | ------ | ------------------------------------------------------------ |
| entity                  | object | Contains the verification response data                      |
| entity.taxpayer\_name   | string | Registered name of the taxpayer                              |
| entity.current\_status  | string | Current status of the registration (e.g., ACTIVE)            |
| entity.is\_deregistered | number | Deregistration flag (0 = not deregistered, 1 = deregistered) |
| entity.tax\_types       | string | Registered tax types for the individual                      |
| entity.nrc              | string | National Registration Card number                            |
| entity.tpin             | string | Taxpayer Identification Number (TPIN)                        |
