Skip to content
Nemo edited this page Aug 5, 2022 · 12 revisions

Razorpay IFSC API Documentation

API server that serves Razorpay's IFSC API. API Root is https://ifsc.razorpay.com/

Routes:

Route Method Response
/:ifsc GET JSON

A sample response is:

{
  "BANK": "Karnataka Bank",
  "IFSC": "KARB0000001",
  "BRANCH": "RTGS-HO",
  "ADDRESS": "REGD. & HEAD OFFICE, P.B.NO.599, MAHAVEER CIRCLE, KANKANADY, MANGALORE - 575002",
  "CONTACT": "2228222",
  "CITY": "DAKSHINA KANNADA",
  "RTGS": true,
  "DISTRICT": "MANGALORE",
  "STATE": "KARNATAKA"
}

URL: https://ifsc.razorpay.com/KARB0000001 You can see a permalink version of the request here

Notes

  • For an invalid IFSC code a 404 is returned.
  • The contact field can either be a string or be null.
  • The MICR/SWIFT code can either be a string or null
  • The API supports CORS, so you make requests directly from the frontend

Field Summary

BANK IFSC BRANCH ADDRESS CONTACT CITY RTGS MICR UPI NEFT IMPS
Bank Name Branch IFSC Branch Name Branch Address Branch Contact Details (if available) City (boolean) Whether branch supports RTGS MICR Code for the Branch (nullable) UPI enabled (bool) NEFT enabled (bool) IMPS enabled (bool)

Clone this wiki locally