CFPB Consumer Complaints Scraper avatar

CFPB Consumer Complaints Scraper

Pricing

from $10.20 / 1,000 results

Go to Apify Store
CFPB Consumer Complaints Scraper

CFPB Consumer Complaints Scraper

Scrape the US CFPB consumer complaints database by company, product, issue, state and date. Get company, product and sub-product, issue and sub-issue, dispute outcome, company response and the consumer complaint narrative. Export to JSON, CSV or Excel.

Pricing

from $10.20 / 1,000 results

Rating

4.0

(1)

Developer

Scrapers Lat

Scrapers Lat

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

13 hours ago

Last modified

Share

CFPB Consumer Complaints Scraper

CFPB Consumer Complaints Scraper

Here is one real result, with every field the actor returns (the consumerComplaintNarrative is trimmed with an ellipsis, every value real):

{
"complaintId": "22409973",
"company": "WELLS FARGO & COMPANY",
"product": "Checking or savings account",
"subProduct": "Checking account",
"issue": "Managing an account",
"subIssue": "Problem using a debit or ATM card",
"state": "CA",
"zipCode": "91342",
"dateReceived": "2026-05-20T23:25:06.000Z",
"dateSentToCompany": "2026-05-20T23:36:29.000Z",
"submittedVia": "Web",
"companyResponse": "Closed with explanation",
"timelyResponse": true,
"consumerDisputed": null,
"companyPublicResponse": "Company has responded to the consumer and the CFPB and chooses not to provide a public response",
"consumerConsentProvided": null,
"tags": null,
"hasNarrative": true,
"consumerComplaintNarrative": "I am writing to formally request reconsideration of my denied debit card fraud claim. My Wells Fargo debit card was lost, and after that, more than nine unauthorized charges were made on my account totaling approximately {$490.00} ...",
"url": "https://www.consumerfinance.gov/data-research/consumer-complaints/search/detail/22409973",
"aiSummary": null,
"aiCategories": null,
"aiExtract": null,
"source": "CFPB Consumer Complaint Database",
"observedAt": "2026-08-14T07:13:07.297Z",
"error": null
}

The most complete CFPB consumer complaints scraper available. It returns every field the US CFPB complaint database exposes for each record, including the company, product and sub-product, issue and sub-issue, company response, dispute outcome and the full consumer narrative, plus optional AI add-ons, and gives you six filters to target exactly the complaints you need.

📥 Input · 📤 Output · 💰 Pricing · ▶️ Examples

Apify Coverage Output Billing

Table of contents

What it does

The actor queries the US Consumer Financial Protection Bureau (CFPB) consumer complaint database, applies the filters you pass as input, and writes one normalized record per complaint to the run's dataset. Each record carries the complaint ID, company, product and sub-product, issue and sub-issue, US state and ZIP, date received and date sent to company, how it was submitted, the company response and public response, whether the response was timely, whether the consumer disputed it, and the free-text consumer narrative when one is published. Dates are returned as ISO timestamps and missing source values are returned as null. If no date window is set, the actor defaults to the last 180 days.

Optional AI add-ons (withAiSummary, withAiCategorize, withAiExtract) add a plain-English summary, a topic/sentiment/severity classification, and structured entities (amounts, dates, parties, products, alleged violations) per complaint. They apply only to complaints that include a narrative, and are charged only when they return usable output.

Quickstart

Open the actor, paste this into the input, and press Run. It returns six complaints matching "unauthorized charges", most relevant first.

{
"searchTerm": "unauthorized charges",
"sortBy": "relevance",
"maxComplaints": 6
}

Every input field is optional. Leave searchTerm empty to browse all complaints in the date window (default: last 180 days).

Input reference

FieldTypeRequiredDefaultDescription
maxComplaintsintegerno10Maximum complaints to collect (1 to 1000000).
searchTermstringno(empty)Full-text search across complaints, for example overdraft fee, identity theft, foreclosure.
companystringno(any)Filter to one company. Must match the exact registered name, for example Experian Information Solutions Inc. or NAVY FEDERAL CREDIT UNION.
productenumno(any)Filter to one financial product category, for example Debt collection, Credit card, Mortgage, Student loan.
statestringno(any)Two-letter US state or territory code, for example CA, TX, NY.
dateReceivedMinstringnolast 180 daysOnly complaints received on or after this date (YYYY-MM-DD).
dateReceivedMaxstringno(none)Only complaints received on or before this date (YYYY-MM-DD).
sortByenumnonewestOrder results. One of newest, oldest, relevance (use with a search keyword).
withAiSummarybooleannofalseAI plain-English narrative summary. Paid add-on, billed only on usable output.
withAiCategorizebooleannofalseAI classification (topics, sentiment, severity). Paid add-on, billed only on usable output.
withAiExtractbooleannofalseAI entity extraction (amounts, dates, parties, products, alleged violations). Paid add-on, billed only on usable output.

Output reference

One dataset item per complaint. Types: string, boolean, string[], object, or null when the source value is absent.

FieldTypeDescription
complaintIdstringCFPB complaint ID.
companystringCompany the complaint is about.
productstringFinancial product category.
subProductstringProduct sub-category, or null.
issuestringIssue category.
subIssuestringIssue sub-category, or null.
statestringTwo-letter US state / territory code, or null.
zipCodestringZIP code (may be masked as XXX), or null.
dateReceivedstringDate the CFPB received the complaint (ISO).
dateSentToCompanystringDate the complaint was sent to the company (ISO).
submittedViastringHow the complaint was submitted, for example Web, Phone.
companyResponsestringCompany response, for example Closed with explanation.
timelyResponsebooleanWhether the company responded on time.
consumerDisputedbooleanWhether the consumer disputed the response, or null.
companyPublicResponsestringCompany's optional public response, or null.
consumerConsentProvidedstringConsent status for the narrative, or null.
tagsstring[]CFPB tags (for example Servicemember, Older American), or null.
hasNarrativebooleanWhether a consumer narrative is present.
consumerComplaintNarrativestringThe free-text consumer narrative (personal data redacted by the CFPB as XXXX), or null.
urlstringCFPB detail page URL for the complaint.
aiSummarystringAI narrative summary, or null unless withAiSummary is on.
aiCategoriesobjectAI {categories, sentiment, severity}, or null unless withAiCategorize is on.
aiExtractobjectAI {amounts, dates, parties, products, allegedViolations}, or null unless withAiExtract is on.
sourcestringData source. CFPB Consumer Complaint Database.
observedAtstringISO 8601 timestamp of when the record was collected.
errorstringnull on success. On a failed run, a single item with a populated error field is written instead.

Example output record

Real record from a live run (input {"searchTerm":"unauthorized charges","maxComplaints":6,"sortBy":"relevance","withAiSummary":true,"withAiCategorize":true,"withAiExtract":true}). The AI fields are populated because this run enabled them, and the narrative is trimmed with an ellipsis:

{
"complaintId": "22409973",
"company": "WELLS FARGO & COMPANY",
"product": "Checking or savings account",
"subProduct": "Checking account",
"issue": "Managing an account",
"subIssue": "Problem using a debit or ATM card",
"state": "CA",
"zipCode": "91342",
"dateReceived": "2026-05-20T23:25:06.000Z",
"dateSentToCompany": "2026-05-20T23:36:29.000Z",
"submittedVia": "Web",
"companyResponse": "Closed with explanation",
"timelyResponse": true,
"companyPublicResponse": "Company has responded to the consumer and the CFPB and chooses not to provide a public response",
"hasNarrative": true,
"consumerComplaintNarrative": "I am writing to formally request reconsideration of my denied debit card fraud claim. My Wells Fargo debit card was lost, and after that, more than nine unauthorized charges were made ...",
"url": "https://www.consumerfinance.gov/data-research/consumer-complaints/search/detail/22409973",
"aiSummary": "The consumer is requesting Wells Fargo to reconsider their denied debit card fraud claim after their lost card was used for unauthorized charges totaling approximately $490.",
"aiCategories": {"categories": ["fraud", "customer service"], "sentiment": "negative", "severity": "high"},
"aiExtract": {
"amounts": [490, 43, 65, 4, 58, 85, 77, 26, 66, 19, 28, 22],
"dates": [],
"parties": ["WELLS FARGO & COMPANY"],
"products": ["Checking or savings account", "Checking account"],
"allegedViolations": ["Unauthorized charges"]
},
"source": "CFPB Consumer Complaint Database",
"observedAt": "2026-08-14T07:13:07.297Z"
}

Run via API and CLI

Start a run and wait for it to finish, then read the dataset. Replace <TOKEN> with your Apify API token.

Run synchronously and get dataset items in one call:

curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~cfpb-complaints-scraper/run-sync-get-dataset-items?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"searchTerm":"overdraft fee","product":"Checking or savings account","state":"CA","maxComplaints":25}'

Start a run asynchronously:

curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~cfpb-complaints-scraper/runs?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"company":"NAVY FEDERAL CREDIT UNION","dateReceivedMin":"2026-01-01","sortBy":"newest","maxComplaints":200}'

Apify CLI:

apify call scrapers_lat/cfpb-complaints-scraper \
--input '{"product":"Debt collection","maxComplaints":50}'

Fetch results

Every run writes to a dataset. Fetch items as JSON, CSV, or Excel by changing format:

# JSON
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"
# CSV
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"
# Paginate large datasets
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&offset=1000&limit=1000"

<DATASET_ID> is returned as defaultDatasetId in the run object. Use offset and limit to page through large result sets. clean=true drops empty and internal fields.

Billing and limits

  • Pay per result. You are charged per complaint record returned (result event). See the pricing tab for the current per-result price.
  • AI add-ons are billed separately. withAiSummary, withAiCategorize and withAiExtract each charge only when they return usable output on a complaint with a narrative, and are available to paying users.
  • No charge on failure. If a run errors, the actor writes a single item with a populated error field and does not charge for it. Empty runs cost nothing.
  • Spend cap respected. Set maxTotalChargeUsd on the run; once reached, the actor stops emitting and charging further billable results.
  • Free Apify plans are capped at 10 records per run. Upgrade for higher maxComplaints.

FAQ and troubleshooting

Why is personal data replaced with XXXX? The CFPB redacts personal information in published narratives. The actor returns exactly what the CFPB publishes; it does not add or reconstruct redacted data.

Why do some complaints have no narrative? A narrative is published only when the consumer consents. hasNarrative tells you which records include one, and the AI add-ons apply only to those.

How do I filter to one company? Set company to the exact registered name as stored in the database, for example Experian Information Solutions Inc..

A run returned 0 records. Why? The filter combination matched nothing in the date window. Widen the date range, remove state or product, or check the company name spelling. Zero-result runs are not charged.

Which date does the window apply to? The date the CFPB received the complaint (dateReceived). If no window is set, it defaults to the last 180 days.

Is this an official CFPB tool? No. This actor is independent and has no affiliation with the CFPB. It reads only data that is publicly available through the CFPB Consumer Complaint Database. Use the results in accordance with the source's terms.

More scrapers at scrapers.lat

Built and maintained by scrapers.lat, where we publish scrapers for US and Latin American public platforms: company registries, government data, finance, e-commerce and more. Browse the catalog or request a custom scraper at scrapers.lat.


Independent tool, not affiliated with the Consumer Financial Protection Bureau (CFPB). Accesses only publicly available complaint data. Use in accordance with the source's terms.