HomeAbout
Join Today
  • Sign Up
  • Sign In
Conatct Us
HomeAbout
Join Today
  • Sign Up
  • Sign In
Conatct Us
  1. Verification Suite
  • Introduction
  • Getting Started
  • Authentication
  • HTTPS Status Codes
  • Rate Limits
  • Verification Suite
    • Digilocker
      • Initiate
      • Check Status
      • Download Aadhaar
    • Aadhaar
      • Send OTP
      • Verify OTP
    • UPI Verification
      POST
    • Bank Verification
      POST
    • PAN Verification
      POST
    • GSTIN Verification
      POST
  • NSDL Account Opening
    • BC Agent Onboarding
      POST
    • Create Account
      POST
    • Account Status
      GET
  • Comunications API
    • Send SMS OTP
      POST
    • Send Whatsapp OTP
      POST
  1. Verification Suite

Bank Verification

POST
/api/v1/verification/bank-verify

Bank Account Verification#

Validate a beneficiary’s bank account using account number and IFSC to reduce payout failures and fraud. Returns confirmation of account validity and the name as reported by the bank.

Request

Header Params

Body Params application/json

Example
{
    "account_number": "12132324355545",
    "ifsc_code": "SBIN0281281"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/verification/bank-verify' \
--header 'x-client-id: {{client_id}}' \
--header 'x-client-secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "account_number": "12132324355545",
    "ifsc_code": "SBIN0281281"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "response_code": 200,
    "status": "success",
    "message": "Success",
    "data": {
        "request_id": "BNKVFR121250918_64866396",
        "account_exists": true,
        "upi_id": null,
        "account_holder_name": "Mr. JOHN DOE",
        "note": "",
        "status": "verified",
        "bank_details": {
            "account": 12132324355545,
            "ifsc": "SBIN0281281",
            "micr": "2133348845",
            "iso3166": "IN-KOL",
            "swift": null,
            "bank": "Bank of India",
            "bank_code": "BNKI",
            "bank_name": "Bank of India",
            "branch": "HOOGHLY",
            "centre": "KOLKATA",
            "district": "KOLKATA",
            "state": "WEST BENGAL",
            "city": "KOLKATA",
            "address": "VISHAL MARKET, GT ROAD, P.O.HOOGHLY, HOWRAH,DIST-KOLKATA,WB-823003",
            "contact": "+914454562008",
            "imps": true,
            "rtgs": true,
            "neft": true,
            "upi": true,
            "micr_check": true
        }
    },
    "meta": {
        "request_id": "3f9eda6d-45bb-41c1-922c-9588ca71ac51",
        "time": "2025-09-18T17:38:31+05:30"
    }
}
🟠422Validation Error
🟠400Bad Request
Previous
UPI Verification
Next
PAN Verification
Built with