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

# Verify Bank Account

> Verifies a bank account number against a bank code.

Verifies the provided bank account details and returns the account holder's name if valid. This is used before adding a bank account for withdrawals.

## Request Headers

<ParamField header="X-Auth-Token" type="string" required>
  The **JWT Access Token** obtained from the `/login` or `/refresh-token` endpoint.
</ParamField>

<ParamField header="x-idempotency-key" type="string" required>
  Unique idempotency key for the request to prevent duplicate processing.
</ParamField>

<ParamField header="x-fapi-auth-date" type="string" required>
  The date and time at which the request was initiated (ISO 8601 format).
</ParamField>

<ParamField header="x-fapi-customer-ip-address" type="string" required>
  The IP address of the customer making the request.
</ParamField>

<ParamField header="x-fapi-interaction-id" type="string" required>
  Unique identifier for the interaction/session.
</ParamField>

## Path Parameters

<ParamField path="bankCode" type="string" required>
  The code of the bank (retrieved from Get Available Banks).
</ParamField>

<ParamField path="accountNumber" type="string" required>
  The account number to verify.
</ParamField>


## OpenAPI

````yaml GET /user/verify-bank-account/{bankCode}/{accountNumber}
openapi: 3.0.0
info:
  title: FinCode API
  version: v6
servers:
  - url: https://{tenant}.fincode.software/api/v6/services
    description: API v6
    variables:
      tenant:
        default: remitjunction
        description: Enter your tenant subdomain
  - url: https://{tenant}.fincode.software/api/v1/services
    description: API v1
    variables:
      tenant:
        default: finlend
        description: Enter your tenant subdomain
  - url: https://api.stag.songhaiexchange.io
    description: Songhai Exchange API
security: []
paths:
  /user/verify-bank-account/{bankCode}/{accountNumber}:
    get:
      tags:
        - Lending
      summary: Verify Bank Account
      description: Verifies a bank account number against a bank code.
      parameters:
        - name: bankCode
          in: path
          required: true
          schema:
            type: string
        - name: accountNumber
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Account verified
      servers:
        - url: https://{tenant}.fincode.software/api/v1/services
          variables:
            tenant:
              default: finlend

````