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

# Digital Address Confirmation

> Retrieve the result of a previously submitted digital address verification using its reference.

The Digital Address Confirmation endpoint retrieves the final status of a digital address verification. Pass the `reference` returned from the [Digital Address Verification](/v3/kyc/nigeria/digital_address_verification) endpoint.

## Endpoint

```
POST /api/onboarding/nigeria_kyc/digital_address_verification_confirmation/
```

## Request

### Headers

| Header           | Value               | Required |
| ---------------- | ------------------- | -------- |
| `x-access-token` | Your API secret key | Yes      |
| `Content-Type`   | `application/json`  | Yes      |

### Body Parameters

| Parameter   | Type   | Required | Description                                                              |
| ----------- | ------ | -------- | ------------------------------------------------------------------------ |
| `reference` | string | Yes      | The reference ID returned from the Digital Address Verification endpoint |

### Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST "https://adhere-api.smartcomply.com/api/onboarding/nigeria_kyc/digital_address_verification_confirmation/" \
    -H "x-access-token: YOUR_SECRET_KEY" \
    -H "Content-Type: application/json" \
    -d '{"reference": "1732800207805106"}'
  ```
</CodeGroup>

## Response

### 200 OK

| Field                      | Type   | Description                                                 |
| -------------------------- | ------ | ----------------------------------------------------------- |
| `data.status`              | string | Final verification status (`"completed"`, `"failed"`, etc.) |
| `data.verification_status` | string | Human-readable result (e.g., `"verification successful"`)   |
| `data.lattitude`           | string | Geocoded latitude                                           |
| `data.longitude`           | string | Geocoded longitude                                          |
| `data.street`              | string | Verified street address                                     |
| `data.city`                | string | Verified city                                               |
| `data.state`               | string | Verified state                                              |
| `data.lga`                 | string | Verified LGA                                                |

```json theme={null}
{
  "status": "success",
  "data": {
    "status": "completed",
    "city": "oshodi",
    "lga": "lagos mainland",
    "landmark": "lagos",
    "street": "270 Murtala Muhammed Way, Alagomeji. Yaba",
    "lattitude": "9.081999",
    "longitude": "8.675277",
    "verification_status": "verification successful",
    "first_name": "John",
    "last_name": "Doe",
    "birth_date": "17/01/1988",
    "phone_number": "08000000000",
    "nin": "10000000001",
    "state": "Lagos"
  },
  "message": "Physical Address Confirmed successfully"
}
```

### 400 Bad Request

```json theme={null}
{
  "status": "failed",
  "data": [],
  "message": "Invalid or expired reference"
}
```


## OpenAPI

````yaml POST /api/onboarding/nigeria_kyc/digital_address_verification_confirmation/
openapi: 3.0.3
info:
  title: Adhere API
  description: >-
    Identity verification, credit checks, transaction monitoring, and loan fraud
    detection across Africa.
  version: 3.0.0
servers:
  - url: https://adhere-api.smartcomply.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Nigeria KYC
  - name: Kenya KYC
  - name: Ghana KYC
  - name: Rwanda KYC
  - name: Uganda KYC
  - name: Biometrics
  - name: Individual Credit
  - name: Business Credit
  - name: Transaction Monitoring
  - name: Transaction Screening
  - name: Transaction KYC
  - name: Loan Fraud
  - name: User Journey
paths:
  /api/onboarding/nigeria_kyc/digital_address_verification_confirmation/:
    post:
      tags:
        - Nigeria KYC
      summary: Digital Address Confirmation
      operationId: digitalAddressConfirmation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - identity_check_id
              properties:
                identity_check_id:
                  type: string
                  description: Reference ID from the digital address verification response
      responses:
        '200':
          description: Digital address result retrieved
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    BadRequest:
      description: Bad Request
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                example: failed
              data:
                type: array
                items: {}
              message:
                type: string
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                example: failed
              message:
                type: string
                example: Authentication credentials were not provided.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-access-token
      description: Your Adhere API secret key

````