← Back to all APIs
🏦

IFSC Lookup

Get bank, branch and address details from an 11-character IFSC code.

Endpoint

GET /api/v1/ifsc/{ifsc}

Parameters

Name In Required Description
ifsc path Yes 11-char IFSC, e.g. SBIN0000001

Example request

curl https://apibharat.com/api/v1/ifsc/SBIN0000001

Example response

{
  "success": true,
  "data": {
    "ifsc": "SBIN0000001",
    "bank": "State Bank of India",
    "branch": "New Delhi Main Branch",
    "address": "11 Sansad Marg, New Delhi",
    "city": "New Delhi",
    "district": "New Delhi",
    "state": "Delhi",
    "contact": "011-23374103",
    "micr": "110002001"
  },
  "message": "IFSC details found"
}

Try it live

Open the example in your browser:

/api/v1/ifsc/SBIN0000001 ↗