Loading…
Loading…
Base URL: https://mantechstudio.in/api/v1
Public developer requests require your ManTech API Key sent in the HTTP Authorization header as a Bearer token:
Authorization: Bearer mantech_live_YOUR_SECRET_KEY
• 1,000 free API requests per day per registered key.
• High-concurrency zero-CORS responses backed by Cloud Functions & CDN caching.
Returns complete verified branch details, payment rail capabilities (NEFT, RTGS, IMPS, UPI), address, and MICR code for any valid 11-character Indian Financial System Code.
curl -X GET "https://mantechstudio.in/api/v1/ifsc/SBIN0000691" \ -H "Authorization: Bearer mantech_live_YOUR_KEY"
{
"ifsc": "SBIN0000691",
"bankName": "State Bank of India",
"bankCode": "SBIN",
"branch": "New Delhi Main Branch",
"address": "11, Parliament Street, New Delhi",
"city": "NEW DELHI",
"district": "NEW DELHI",
"state": "DELHI",
"micr": "110002001",
"contact": "011-23374000",
"neft": true,
"rtgs": true,
"imps": true,
"upi": true,
"updatedAt": "2026-07-15"
}Search active bank branches filtered by bank code, state, and city. Returns structured branch list.
bank (required): 4-character Bank Code (e.g. SBIN, HDFC, ICIC, PUNB, BARB)state (optional): State name (e.g. RAJASTHAN, MAHARASHTRA, DELHI)city (optional): City name (e.g. JAIPUR, KOTA, MUMBAI)curl -X GET "https://mantechstudio.in/api/v1/ifsc/search?bank=SBIN&state=RAJASTHAN" \ -H "Authorization: Bearer mantech_live_YOUR_KEY"
const res = await fetch('https://mantechstudio.in/api/v1/ifsc/SBIN0000691', {
headers: {
'Authorization': 'Bearer mantech_live_YOUR_KEY'
}
});
const data = await res.json();
console.log(data.bankName, data.branch, data.address);import requests
headers = {"Authorization": "Bearer mantech_live_YOUR_KEY"}
res = requests.get("https://mantechstudio.in/api/v1/ifsc/SBIN0000691", headers=headers)
data = res.json()
print(data["bankName"], data["branch"])The initial dataset for ManTech Sovereign IFSC Database is sourced from the open-source razorpay/ifsc project (Public Domain dataset). Data is consolidated from primary Reserve Bank of India (RBI) NEFT/RTGS publications and National Payments Corporation of India (NPCI) NACH member lists.