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

# Physical Address Confirmation

> Retrieve the result of a previously submitted physical address verification using its identity check ID.

The Physical Address Confirmation endpoint retrieves the final status of a physical address verification. Pass the `identity_check_id` returned from either the [Physical Address (Lagos)](/v3/kyc/nigeria/Physical_Address_Verification_Lagos) or [Physical Address (Other States)](/v3/kyc/nigeria/Physical_Address_Verification_Other) endpoint.

## Endpoint

```
POST /api/onboarding/nigeria_kyc/physical_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                                                     |
| ------------------- | ------- | -------- | --------------------------------------------------------------- |
| `identity_check_id` | integer | Yes      | The ID returned from the physical address verification endpoint |

### Example

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

## Response

### 200 OK

| Field             | Type   | Description                                                        |
| ----------------- | ------ | ------------------------------------------------------------------ |
| `data.status`     | string | Final verification status (`"completed"`, `"pending"`, `"failed"`) |
| `data.street`     | string | Verified street address                                            |
| `data.city`       | string | Verified city                                                      |
| `data.lga`        | string | Verified LGA                                                       |
| `data.state`      | string | Verified state                                                     |
| `data.first_name` | string | Customer's first name                                              |
| `data.last_name`  | string | Customer's last name                                               |

```json theme={null}
{
  "status": "success",
  "data": {
    "status": "completed",
    "city": "oshodi",
    "lga": "lagos mainland",
    "landmark": "lagos",
    "street": "270 Murtala Muhammed Way, Alagomeji. Yaba",
    "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 identity_check_id"
}
```


## OpenAPI

````yaml POST /api/onboarding/nigeria_kyc/physical_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/physical_address_verification_confirmation/:
    post:
      tags:
        - Nigeria KYC
      summary: Physical Address Confirmation
      operationId: physicalAddressConfirmation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - identity_check_id
              properties:
                identity_check_id:
                  type: integer
                  description: Integer ID from the physical address verification response
      responses:
        '200':
          description: Physical 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

````