# FDIC Bank Lookup

> FDIC Bank Lookup is a paid API for AI agents from fittings.sh, paid per call via x402, $0.0078/call, status unknown (last checked 2026-09-14).

Look up an FDIC-insured US bank by certificate number or name, returning insurance status, charter class, location, offices, assets, and deposits.

## Facts

- Endpoint: GET https://fittings.sh/v1/fdic/bank-lookup
- Price: $0.0078/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fdic-bank-lookup-f75e9a7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sW273eSi2vQiHwY6GOYRX

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 fdic-bank-lookup-f75e9a7c
```

Example prompt: Can you look up Wells Fargo Bank by name in the FDIC database and tell me its insurance status, charter class, total assets, and how many offices it has?

## When to prefer this

Use this endpoint when you need authoritative FDIC regulatory data about a US bank — insurance status, charter class, asset/deposit totals, or branch count — either by exact certificate number for a precise lookup or by institution name for a search. Prefer over general web search when you need structured, machine-readable bank metadata for compliance checks, due diligence, or financial enrichment workflows.

## Known failure modes

- Certificate number not found — returns empty results or 404
- Name search returns zero matches if spelling is too different from registered name
- Ambiguous name matches many institutions — returns up to limit without a definitive single result
- Invalid cert parameter type (non-numeric) — validation error
- limit parameter out of range (>20 or <1) — may return error or be clamped
- FDIC data source temporarily unavailable — upstream timeout or 503

## How this service works

Look up an FDIC-insured US bank by certificate number or name: insurance status, charter class, location, offices, assets and deposits.

## Output

Returns FDIC bank record(s) including institution name, certificate number, insurance status, charter class, headquarters location, number of branch offices, total assets, and total deposits. Name searches return up to the requested limit (default 5, max 20) of matching institutions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "cert": {
       "type": "number",
       "description": "FDIC certificate number, for an exact lookup"
      },
      "name": {
       "type": "string",
       "description": "Institution name, for a search"
      },
      "limit": {
       "type": "number",
       "description": "1-20 results for a name search, default 5"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fdic-bank-lookup-f75e9a7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
