Bank AccountIFSC

IFSC Code Verification — Bank & Branch Details

Validate any IFSC code and get bank name, branch address, and MICR details. Useful for payment processing and bank account verification.

curl -X GET "https://production.deepvue.tech/v1/verification/ifsc?ifsc=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "message": "Invalid IFSC",
  "code": 422,
  "transaction_id": "3d8f62f0c49441b396069966dd4898fa"
}
GET
/v1/verification/ifsc
GET
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Query Parameters

Responses

Successful Response

Overview

IFSC code is a unique identifier for a bank branch. Businesses verify IFSC before performing penny-drop to ensure successful payouts. This API allows you to verify IFSC codes against RBI's official registry and retrieve associated bank branch information.

The API enables two main capabilities:

  1. Verification of IFSC codes for validity.
  2. Retrieval of bank and branch details linked to a valid IFSC code.

Upon successful verification, the API provides bank name, NEFT/IMPS/RTGS/UPI/FT status, MICR code, branch address, city, state, and SWIFT code information.

The IFSC code must contain exactly 11 characters. Invalid formats or non-existent codes return appropriate error responses indicating the specific issue.