# India IFSC Bank Branch Lookup API

> India IFSC Bank Branch Lookup API is a paid API for AI agents from verifyapi.hillguava.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up Indian bank branch details (name, address, payment flags) by IFSC code, pay-per-call via USDC on Base.

## Facts

- Endpoint: GET https://verifyapi.hillguava.xyz/verify/ifsc/%7Bcode%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/india-ifsc-bank-branch-lookup-api-57be02a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q7yOZB3dYqAQdmpGLYQbc

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability india-ifsc-bank-branch-lookup-api-57be02a2
```

Example prompt: Can you look up the branch details for IFSC code HDFC0000060 — I need to know the bank name, branch, and whether it supports UPI and RTGS?

## When to prefer this

Use this endpoint when you need to validate or enrich Indian bank IFSC codes — specifically to get branch-level details (bank name, address, payment rail support) for a single IFSC. Prefer this over manual lookup when building payment flows, verifying user-supplied bank details, or enriching financial records with branch metadata. It is a pay-per-call micropayment API so suitable for low-to-medium volume lookups.

## Known failure modes

- Invalid or malformed IFSC code returns an error or empty result
- IFSC code not found in database returns 404 or null response
- Payment failure (insufficient USDC balance) blocks the request with 402
- Network timeout on hillguava.xyz host
- Outdated branch data if database is not current

## How this service works

Pay-per-call India business and identity verification: IFSC, pincode, and GSTIN format validation. Powered by x402 — pay in USDC on Base.

## Output

Returns a JSON object with the bank name, IFSC code, branch name, and a flags object indicating support for UPI, IMPS, NEFT, and RTGS payment rails. May also include MICR and SWIFT codes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "bank": "HDFC Bank",
  "ifsc": "HDFC0000060",
  "branch": "MUMBAI - FORT",
  "supports": {
   "upi": true,
   "imps": true,
   "neft": true,
   "rtgs": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/india-ifsc-bank-branch-lookup-api-57be02a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from verifyapi.hillguava.xyz](https://www.zero.xyz/host/verifyapi.hillguava.xyz/llms.txt)
