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

# Account Name Enquiry

> This endpoint enables you to validate an account number and the account name.

# Account Name Enquiry

<ParamField body="accountNumber" type="string" required>
  The account number to be validated, **Example:** `8500014687`
</ParamField>

<ParamField body="bankCode" type="string" required>
  The NIP institutional code of the bank, **Example:** `999127`
</ParamField>

<ParamField body="sessionId" type="string" required>
  A 30 digit unique sessionId generated by your application, \*\***Example:**
  `123456789012345678901234567890`
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
    "data": {
      "bankCode": "000001",
      "accountNumber": "0123456789",
      "accountName": "Money Market Account",
      "sessionId": "session_123456789012345678901234"
    }
  }
  ```
</ResponseExample>
