# FDIC Bank Branch Locator by State

> FDIC Bank Branch Locator by 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-16).

Returns FDIC-insured bank branch locations (name, city, street address) filtered by state, sourced from official FDIC BankFind data refreshed daily.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-gov-fdic-locations
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fdic-bank-branch-locator-by-state-5d9499b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VtwKbb5LGJ7-s4JNOkcvu

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-branch-locator-by-state-5d9499b7 -d '<json body>'
```

Example prompt: Can you pull up all FDIC-insured bank branch locations in Texas — I need the branch names, cities, and street addresses for a market presence analysis?

## When to prefer this

Choose this endpoint when you need official, government-sourced FDIC branch location data for a specific US state, particularly for branch mapping, market presence studies, or geographic banking analysis. Prefer this over scraped or third-party bank data when accuracy, freshness (daily refresh), and FDIC authority are required. Best suited for state-level queries rather than nationwide bulk pulls.

## Known failure modes

- Invalid or unrecognized state input returns an error or empty result set
- State with no matching FDIC branch records returns an empty array
- Malformed POST body or missing required fields returns a 400-level error
- Service unavailability or upstream FDIC data refresh failure may return a 500-level error
- Rate limiting or payment validation failure may block the request

## How this service works

Find FDIC-insured bank branch locations by state. Returns branch name, city and street address. Official FDIC BankFind locations data, refreshed daily. Useful for branch mapping, market presence and geographic banking analysis.

## Output

A list of FDIC-insured bank branch records for the queried state, each containing branch name, city, and street address. Data is sourced directly from the official FDIC BankFind dataset and is 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-branch-locator-by-state-5d9499b7/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)
