# FDIC Bank Lookup by US State

> FDIC Bank Lookup by US State is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Looks up FDIC-insured banks by US state, returning institution name, city, state, and total assets for each bank using official FDIC BankFind data.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-gov-fdic-institutions
- Price: $0.06/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-by-us-state-e7cf749e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_85o3cE-CRPWtQG0uzVhod

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-by-us-state-e7cf749e -d '<json body>'
```

Example prompt: Can you pull up all FDIC-insured banks in Texas — I need the institution names, cities, and total assets for each one so I can do some market mapping?

## When to prefer this

Use this endpoint when you need authoritative, FDIC-sourced data on insured banking institutions filtered by US state — ideal for bank due diligence, competitive market mapping, financial research, or regulatory analysis. Prefer this over generic web search when you need structured, daily-refreshed, machine-readable banking data with asset figures.

## Known failure modes

- Invalid or unrecognized US state input returns an error or empty result set
- Network timeout on the proxy layer causing a failed response
- State with very large number of institutions may return a large payload
- Stale data if daily refresh has not yet completed
- Missing or malformed body fields return a 400-level error

## How this service works

Look up FDIC-insured banks by US state. Returns institution name, city, state and total assets (USD thousands) for each bank. Official FDIC BankFind data, refreshed daily. Useful for bank due-diligence, market mapping and financial research.

## Output

Returns a list of FDIC-insured banking institutions for the requested US state, with each record including the institution name, city, state abbreviation, and total assets denominated in USD thousands. Data is sourced from official FDIC BankFind and refreshed daily.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fdic-bank-lookup-by-us-state-e7cf749e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
