# FDIC State Banking Summary

> FDIC State Banking Summary 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).

Returns aggregate total assets and banking statistics for FDIC-insured institutions, broken down by US state, for a specified year.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-gov-fdic-state-summary
- 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-state-banking-summary-7daeb6be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oybWrPQrlmsWqv-kltb7c

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-state-banking-summary-7daeb6be -d '<json body>'
```

Example prompt: Pull the FDIC state-level banking summary for 2022 — I want to see total assets for each state across all FDIC-insured institutions.

## When to prefer this

Choose this endpoint when you need official, government-sourced FDIC aggregate banking data at the state level, particularly for macroeconomic research, financial sector analysis, or state economic comparisons. Prefer this over scraped or third-party banking datasets when data accuracy and official provenance matter. Best suited for year-level granularity rather than institution-level or real-time data needs.

## Known failure modes

- Invalid or unsupported year returns an error or empty result
- Missing required body parameters cause a 400-level validation error
- Payment not fulfilled triggers a 402 Payment Required response
- FDIC data not yet available for very recent years may return incomplete results
- Network or proxy timeout returns a 5xx error

## How this service works

Retrieve aggregate state-level banking summaries for a given year. Returns total assets per state for FDIC-insured institutions. Official FDIC aggregate data, useful for macro banking comparisons and state economic research.

## Output

Returns a structured dataset of aggregate banking statistics for FDIC-insured institutions organized by US state for the requested year, including total assets per state, enabling macro-level comparisons of banking sector size and concentration across states.

## 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-state-banking-summary-7daeb6be/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)
