India IFSC Codes
live FinanceGeographyIndian bank branch lookup by IFSC code — resolves branch codes to bank, branch, address, MICR, and NEFT/RTGS/UPI/IMPS capability flags via Razorpay's open IFSC dataset.
1 tools
0ms auth
free tier 50 calls/day
Tools
ifsc_lookup Indian bank branch lookup by IFSC code. Resolves an 11-character IFSC code (printed on Indian cheques and bank statements) to the bank name, branch, address, city, district, state, MICR code, SWIFT co
No parameters required.
Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/ifsc-in/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/ifsc-in/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"ifsc_lookup","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("ifsc_lookup", {}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("indian bank branch lookup by ifsc code — resolves branch codes to bank, branch, address, micr, and neft/rtgs/upi/imps capability flags via razorpay's open ifsc dataset");