About this endpoint
What it does
Validates an IFSC bank code by accepting an ifsc value in the request body and returning a data payload that is either a detailed lookup object or false when the IFSC is not found or deleted.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| ifsc | String | Yes | IFSC code to look up; case-insensitive, 11 characters. |
Response
Returns a JSON object with a required data field. data is either an object containing bank lookup details, or a boolean false when the IFSC is not found or deleted.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| data | Object / Boolean | Yes | Either a lookup object with bank details, or false when the IFSC is not found or deleted. |
| data.bank | String | No | Bank name. |
| data.city | String | No | City name. |
| data.ifsc | String | No | IFSC code. |
| data.phone | String | No | Phone number. |
| data.state | String | No | State name. |
| data.valid | Boolean | No | Whether the IFSC is valid. |
| data.branch | String | No | Branch name. |
| data.address | String | No | Branch address. |
| data.std_code | String | No | STD code. |