# CFPB Bank Complaints Scraper

**Use case:** 

Scrape CFPB bank complaint records by company, state, product, issue, response status, and date range.

## Input

```json
{
  "maxItems": 20,
  "companyContains": "bank",
  "companyNames": [],
  "products": [],
  "issues": [],
  "states": [],
  "dateReceivedFrom": "",
  "dateReceivedTo": "",
  "companyResponses": [],
  "submittedVia": [],
  "disputed": "any",
  "includeNarrative": false
}
```

## Output

```json
{
  "complaintId": {
    "label": "Complaint ID"
  },
  "dateReceived": {
    "label": "Date received"
  },
  "product": {
    "label": "Product"
  },
  "issue": {
    "label": "Issue"
  },
  "company": {
    "label": "Company"
  },
  "state": {
    "label": "State"
  },
  "submittedVia": {
    "label": "Submitted via"
  },
  "companyResponse": {
    "label": "Company response"
  },
  "timelyResponse": {
    "label": "Timely response"
  },
  "consumerDisputed": {
    "label": "Consumer disputed"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [CFPB Consumer Complaint Database Scraper](https://apify.com/automation-lab/cfpb-consumer-complaint-database-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/cfpb-consumer-complaint-database-scraper) to learn more, explore other use cases, and run it yourself.