> For the complete documentation index, see [llms.txt](https://developer.myidentitypass.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.myidentitypass.com/products/data-verification/nigeria/bank-account-verification-1/account-number-2.0.md).

# Account number 2.0

{% hint style="info" %}
TEST DATA:

number: 4444444444

bank\_code: 214
{% endhint %}

## Verify Account Number 2.0

<mark style="color:green;">`POST`</mark> `https://api.myidentitypay.com/api/v2/biometrics/merchant/data/verification/bank_account/advance`

This endpoint allows you to verify a bank account number.

#### Query Parameters

| Name                                         | Type   | Description         |
| -------------------------------------------- | ------ | ------------------- |
| number<mark style="color:red;">\*</mark>     | string | account number      |
| bank\_code<mark style="color:red;">\*</mark> | string | code of user's bank |

#### Headers

| Name                                        | Type   | Description        |
| ------------------------------------------- | ------ | ------------------ |
| x-api-key<mark style="color:red;">\*</mark> | string | \<your secret key> |
| app-id<mark style="color:red;">\*</mark>    | String | \<your app id>     |

{% tabs %}
{% tab title="200 Account details retrieved successfully" %}

```
{
    "status": true,
    "detail": "Verification Successful",
    "account_data": {
        "account_currency": "",
        "account_name": "",
        "first_name": "",
        "other_names": "",
        "last_name": "",
        "account_type": "",
        "address_1": "",
        "address_2": "",
        "city": "",
        "phone": "",
        "postal_code": "",
        "state_code": "",
        "country_code": "",
        "nationality": "",
        "country_of_birth": "",
        "country_of_issue": "",
        "dob": "undefined",
        "expiry_date": "",
        "identity_number": "XXXXXXXXXXX",
        "identity_type": "BVN"
    },
    "verification": {
        "status": "",
        "reference": ""
    }
}
```

{% endtab %}
{% endtabs %}
