# Bank failures across New York and its neighbours

**Use case:** 

Failures in New York, New Jersey and Pennsylvania in one run, with the state on every row so three markets can be compared without three separate downloads.

## Input

```json
{
  "states": [
    "NY",
    "NJ",
    "PA"
  ],
  "fromYear": 0,
  "toYear": 0,
  "nameContains": "",
  "maxRecords": 500,
  "maxRetries": 3
}
```

## Output

```json
{
  "rowType": {
    "label": "Row",
    "format": "string"
  },
  "ok": {
    "label": "OK",
    "format": "string"
  },
  "reason": {
    "label": "Reason",
    "format": "string"
  },
  "name": {
    "label": "Bank",
    "format": "string"
  },
  "cert": {
    "label": "FDIC cert",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "cityState": {
    "label": "City, state",
    "format": "string"
  },
  "failDate": {
    "label": "Failed on",
    "format": "string"
  },
  "failYear": {
    "label": "Year",
    "format": "string"
  },
  "resolutionCode": {
    "label": "Resolution code",
    "format": "string"
  },
  "resolution": {
    "label": "What happened",
    "format": "string"
  },
  "acquiringInstitution": {
    "label": "Acquired by",
    "format": "string"
  },
  "acquirerCity": {
    "label": "Acquirer city",
    "format": "string"
  },
  "acquirerState": {
    "label": "Acquirer state",
    "format": "string"
  },
  "totalAssetsUsd": {
    "label": "Assets (USD)",
    "format": "string"
  },
  "totalDepositsUsd": {
    "label": "Deposits (USD)",
    "format": "string"
  },
  "estimatedLossToFundUsd": {
    "label": "Estimated loss (USD)",
    "format": "string"
  },
  "estimatedLossNote": {
    "label": "Loss note",
    "format": "string"
  },
  "insuranceFund": {
    "label": "Fund",
    "format": "string"
  },
  "charterClass": {
    "label": "Charter class",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "string"
  },
  "fdicId": {
    "label": "FDIC id",
    "format": "string"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [US Bank Failures Scraper & API - FDIC Failed Bank List](https://apify.com/neverempty/us-bank-failures.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/us-bank-failures.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/neverempty/us-bank-failures.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
