-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchapter-7-complete-guide.html
More file actions
1166 lines (1016 loc) · 76 KB
/
Copy pathchapter-7-complete-guide.html
File metadata and controls
1166 lines (1016 loc) · 76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<link rel="preconnect" href="https://www.googletagmanager.com">
<link rel="preconnect" href="https://www.googletagmanager.com">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FTWLM223G7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('set', 'allow_ad_personalization_signals', false);
gtag('config', 'G-FTWLM223G7');
gtag('config', 'G-053Z64N82F');
</script>
<script>
document.addEventListener('click', function(e) {
var link = e.target.closest('a[href*="uscourts.gov"]');
if (link) {
gtag('event', 'outbound_click', {
event_category: 'credential_verification',
event_label: link.href,
page_path: location.pathname,
transport_type: 'beacon'
});
}
});
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chapter 7 Bankruptcy -- The Complete Guide to Filing, Qualifying, and What to Expect [2026]</title>
<meta name="description" content="Everything you need to know about Chapter 7 bankruptcy. Covers the means test, exemptions, 341 meeting, timeline, cost, and what happens to your credit score afterward.">
<meta name="keywords" content="chapter 7 bankruptcy, how to file chapter 7, chapter 7 means test, chapter 7 discharge, bankruptcy liquidation, chapter 7 exemptions, bankruptcy cost, 341 meeting, chapter 7 timeline, chapter 7 credit score, no-asset bankruptcy, chapter 7 vs chapter 13">
<link rel="canonical" href="https://1328f.com/chapter-7-complete-guide.html">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<!-- Open Graph -->
<meta property="og:title" content="Chapter 7 Bankruptcy: The Complete Guide">
<meta property="og:description" content="Everything you need to know about Chapter 7 bankruptcy -- who qualifies, how the means test works, what property you keep, which debts get wiped out, costs, credit impact, and what federal data shows about outcomes.">
<meta property="og:type" content="article">
<meta property="og:url" content="https://1328f.com/chapter-7-complete-guide.html">
<meta property="og:image" content="https://1328f.com/og-image.png">
<meta property="og:site_name" content="1328f.com">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Chapter 7 Bankruptcy: The Complete Guide">
<meta name="twitter:description" content="Everything you need to know about Chapter 7 bankruptcy. Means test, exemptions, discharge, costs, credit impact, and federal outcome data.">
<meta name="twitter:image" content="https://1328f.com/og-image.png">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How do I know if I qualify for Chapter 7 bankruptcy?",
"acceptedAnswer": {
"@type": "Answer",
"text": "You qualify for Chapter 7 if you pass the means test under 11 U.S.C. Section 707(b). First, your household income is compared to the median income for your state and household size. If you are below the median, you qualify automatically. If you are above it, a second calculation deducts allowed expenses to see if your disposable income is low enough. The means test only applies to individuals with primarily consumer debts -- business entities do not take it."
}
},
{
"@type": "Question",
"name": "What debts does Chapter 7 eliminate?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Chapter 7 eliminates most unsecured debts including credit card balances, medical bills, personal loans, past-due utility bills, deficiency balances after repossession or foreclosure, and most civil lawsuit judgments. However, certain debts survive bankruptcy under Section 523(a), including student loans (unless you prove undue hardship), child support, alimony, most tax debts, debts from fraud, and DUI-related obligations."
}
},
{
"@type": "Question",
"name": "Will I lose my house or car in Chapter 7?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Not necessarily. Every state has exemption laws that protect certain amounts of equity in your home and vehicles. If your equity falls within the exemption limits, you keep the property. In practice, the vast majority of Chapter 7 cases are no-asset cases, meaning the trustee finds nothing worth selling and the debtor keeps everything. However, if you have significant equity beyond the exemption limits, the trustee can sell the property and distribute the proceeds to creditors."
}
},
{
"@type": "Question",
"name": "How long does Chapter 7 bankruptcy take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "A typical no-asset Chapter 7 case takes about 3 to 4 months from filing to discharge. The 341 meeting of creditors occurs 21 to 40 days after filing, and the discharge is usually entered about 60 days after the 341 meeting. Asset cases take longer because the trustee must liquidate property and distribute proceeds, which can take a year or more."
}
},
{
"@type": "Question",
"name": "How much does it cost to file Chapter 7?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The court filing fee for Chapter 7 is $338 as of 2024. Attorney fees typically range from $1,000 to $3,500 depending on your location and the complexity of your case, with the national average around $1,500. You can request to pay the filing fee in installments, and if your income is below 150% of the federal poverty guidelines, you can apply to have the filing fee waived entirely."
}
},
{
"@type": "Question",
"name": "How long after Chapter 7 can I file bankruptcy again?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Under Section 727(a)(8), you must wait 8 years from the filing date of a prior Chapter 7 before receiving another Chapter 7 discharge. If you want to file Chapter 13 instead, the waiting period is 4 years under Section 1328(f)(1). These periods are measured from filing date to filing date, not from discharge date. Filing before the waiting period expires means you can go through the entire bankruptcy process but receive no discharge at the end."
}
}
]
}
</script>
<style>
:root {
--bg: #0d1117;
--surface: #161b22;
--border: #30363d;
--text: #e6edf3;
--text-muted: #9eaab6;
--accent: #58a6ff;
--green: #3fb950;
--red: #f85149;
--yellow: #e3a835;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.7;
padding: 0 20px;
}
.container {
max-width: 760px;
margin: 0 auto;
padding: 40px 0 80px;
}
.breadcrumb {
font-size: 14px;
color: var(--text-muted);
margin-bottom: 24px;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
h1 {
font-size: 32px;
font-weight: 600;
margin-bottom: 8px;
line-height: 1.3;
}
.subtitle {
color: var(--text-muted);
font-size: 16px;
margin-bottom: 32px;
line-height: 1.6;
}
h2 {
font-size: 22px;
font-weight: 600;
margin: 40px 0 16px;
padding-bottom: 8px;
border-bottom: 1px solid var(--border);
}
h3 {
font-size: 18px;
font-weight: 600;
margin: 28px 0 12px;
}
p { margin-bottom: 16px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.statute-box {
background: var(--surface);
border: 1px solid var(--border);
border-left: 4px solid var(--accent);
padding: 20px 24px;
margin: 24px 0;
border-radius: 6px;
font-size: 15px;
}
.statute-box .label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-muted);
margin-bottom: 8px;
}
.warning-box {
background: var(--surface);
border: 1px solid var(--border);
border-left: 4px solid var(--yellow);
padding: 20px 24px;
margin: 24px 0;
border-radius: 6px;
}
.warning-box .label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-muted);
margin-bottom: 8px;
}
.red-box {
background: var(--surface);
border: 1px solid var(--border);
border-left: 4px solid var(--red);
padding: 20px 24px;
margin: 24px 0;
border-radius: 6px;
}
.red-box .label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-muted);
margin-bottom: 8px;
}
.green-box {
background: var(--surface);
border: 1px solid var(--border);
border-left: 4px solid var(--green);
padding: 20px 24px;
margin: 24px 0;
border-radius: 6px;
}
.green-box .label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-muted);
margin-bottom: 8px;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 15px;
}
th, td {
padding: 10px 14px;
text-align: left;
border-bottom: 1px solid var(--border);
}
th {
color: var(--text-muted);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 600;
}
ul, ol { margin: 0 0 16px 24px; }
li { margin-bottom: 8px; }
.cta-box {
background: var(--surface);
border: 1px solid var(--accent);
border-radius: 6px;
padding: 20px 24px;
margin: 32px 0;
text-align: center;
}
.cta-box a.btn {
display: inline-block;
margin-top: 12px;
padding: 10px 24px;
background: var(--accent);
color: #fff;
border-radius: 6px;
font-weight: 600;
text-decoration: none;
}
.cta-box a.btn:hover { opacity: 0.9; text-decoration: none; }
.chapter-nav {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 6px;
padding: 16px 20px;
margin: 40px 0 0;
}
.chapter-nav p {
color: var(--text-muted);
font-size: 13px;
margin-bottom: 10px;
font-weight: 600;
text-transform: uppercase;
}
.chapter-nav-links {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.chapter-nav-links a {
display: inline-block;
padding: 6px 14px;
background: #21262d;
border: 1px solid var(--border);
border-radius: 4px;
font-size: 14px;
color: var(--text-muted);
text-decoration: none;
}
.chapter-nav-links a:hover { color: var(--accent); border-color: var(--accent); text-decoration: none; }
.chapter-nav-links a.current { color: var(--accent); border-color: var(--accent); }
.toc {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 6px;
padding: 20px 24px;
margin: 0 0 32px;
}
.toc p {
font-weight: 600;
margin-bottom: 12px;
color: var(--text-muted);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.toc ol { margin: 0 0 0 20px; }
.toc li { margin-bottom: 4px; font-size: 14px; }
.check-icon { color: var(--green); }
.x-icon { color: var(--red); }
.footer {
margin-top: 64px;
padding-top: 24px;
border-top: 1px solid var(--border);
font-size: 13px;
color: var(--text-muted);
}
.footer a { color: var(--accent); }
@media (max-width: 600px) {
h1 { font-size: 24px; }
h2 { font-size: 19px; }
.container { padding: 24px 0 60px; }
table { font-size: 13px; }
th, td { padding: 8px 10px; }
}
</style>
<meta name="last-modified" content="2026-05-01">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Screener",
"item": "https://1328f.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Chapter 7",
"item": "https://1328f.com/chapter-7.html"
},
{
"@type": "ListItem",
"position": 3,
"name": "Complete Guide",
"item": "https://1328f.com/chapter-7-complete-guide.html"
}
]
}
</script>
<link rel="sitemap" type="application/xml" href="/sitemap.xml">
<script type="application/ld+json">
{"@context": "https://schema.org", "@type": "Organization", "name": "Open Bankruptcy Project", "url": "https://1328f.org", "description": "Free, open-source bankruptcy court transparency tools and research.", "foundingDate": "2026-03-27", "areaServed": "US", "nonprofitStatus": "Nonprofit501c3", "sameAs": ["https://1328f.com", "https://1328f.org"]}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Article",
"headline": "Chapter 7 Bankruptcy: The Complete Guide",
"description": "The complete guide to Chapter 7 bankruptcy. Learn who qualifies, how the means test works, what property you keep, which debts get discharged, how much it costs",
"author": {
"@type": "Organization",
"name": "Open Bankruptcy Project"
},
"publisher": {
"@type": "Organization",
"name": "Open Bankruptcy Project",
"url": "https://1328f.org"
},
"datePublished": "2026-03-28",
"dateModified": "2026-05-01",
"mainEntityOfPage": "https://1328f.com/chapter-7-complete-guide.html"
},
{
"@type": "HowTo",
"name": "Chapter 7 Bankruptcy: The Complete Guide",
"step": [
{
"@type": "HowToStep",
"position": 1,
"text": "window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n gtag('config', 'G-FTWLM223G7');\n\n\ndocument.addEventListener('click', function(e) {\n"
},
{
"@type": "HowToStep",
"position": 2,
"text": "Who Qualifies?"
},
{
"@type": "HowToStep",
"position": 3,
"text": "The Means Test Step by Step"
},
{
"@type": "HowToStep",
"position": 4,
"text": "What Property Can You Keep?"
},
{
"@type": "HowToStep",
"position": 5,
"text": "What Debts Get Discharged?"
},
{
"@type": "HowToStep",
"position": 6,
"text": "What Debts Survive?"
},
{
"@type": "HowToStep",
"position": 7,
"text": "The Chapter 7 Process Timeline"
},
{
"@type": "HowToStep",
"position": 8,
"text": "Step 1: Credit Counseling"
},
{
"@type": "HowToStep",
"position": 9,
"text": "Step 2: Filing the Petition"
},
{
"@type": "HowToStep",
"position": 10,
"text": "Step 3: The Automatic Stay"
}
]
},
{
"@type": "WebPage",
"name": "Chapter 7 Bankruptcy: The Complete Guide",
"url": "https://1328f.com/chapter-7-complete-guide.html",
"speakable": {
"@type": "SpeakableSpecification",
"cssSelector": [
".quick-answer",
"h1",
".summary",
"p:first-of-type"
]
}
}
]
}
</script>
</head>
<body>
<style>
#site-nav{background:#0d1117;border-bottom:1px solid #30363d;padding:0.5rem 1rem;text-align:center;font-size:0.78rem;line-height:1.9}
#site-nav a{margin:0 0.3rem}
#site-nav .sep{color:#30363d;margin:0 0.25rem}
#site-nav .nav-label{color:#f0f6fc;margin:0 0.4rem;font-weight:700}
#site-nav .nav-label:first-child{margin-right:0.4rem}
.nav-toggle{display:none;background:none;border:1px solid #30363d;color:#c9d1d9;font-size:1.2rem;padding:0.4rem 0.75rem;border-radius:4px;cursor:pointer;line-height:1}
.nav-toggle:focus-visible{outline:2px solid #58a6ff;outline-offset:2px}
.nav-links{display:inline}
@media(max-width:768px){
.nav-toggle{display:inline-block;margin:0.25rem 0}
.nav-links{display:none;text-align:left;padding:0.5rem 0}
.nav-links.open{display:block}
.nav-links a{display:block;padding:0.6rem 1rem;margin:0;font-size:0.9rem;min-height:44px;line-height:1.6;border-bottom:1px solid #21262d}
.nav-links a:hover,.nav-links a:focus{background:#161b22}
.nav-links .sep{display:none}
.nav-links br{display:none}
.nav-links .nav-label{display:block;padding:0.5rem 1rem 0.2rem;font-size:0.75rem;text-transform:uppercase;letter-spacing:0.05em;color:#9eaab6;margin:0}
}
</style>
<nav id="site-nav" aria-label="Site navigation">
<button class="nav-toggle" aria-expanded="false" aria-controls="nav-links" aria-label="Toggle navigation menu">☰ Menu</button>
<div class="nav-links" id="nav-links">
<strong class="nav-label">Tools:</strong>
<a href="check.html">Eligibility Checker</a>
<a href="compare.html">Compare All Bars</a>
<a href="dashboard.html">Dashboard</a>
<a href="timeline.html">Timeline</a>
<span class="sep">|</span>
<strong class="nav-label">Learn:</strong>
<a href="explainer.html">1328(f) Explained</a>
<a href="discharge-bar.html">Discharge Bar</a>
<a href="727a8-discharge-bar.html">727(a)(8) Bar</a>
<a href="109g-filing-bar.html">109(g) Bar</a>
<a href="can-i-file-bankruptcy-again.html">Can I File Again?</a>
<a href="how-long-between-bankruptcies.html">How Long Between?</a>
<span class="sep">|</span>
<a href="chapter-7.html">Ch. 7</a>
<a href="chapter-11.html">Ch. 11</a>
<a href="chapter-12.html">Ch. 12</a>
<a href="chapter-13.html">Ch. 13</a>
<span class="sep">|</span>
<strong class="nav-label">Statutes:</strong>
<a href="section-362-automatic-stay.html">§362</a>
<a href="section-506-secured-claims.html">§506</a>
<a href="section-523-nondischargeable-debts.html">§523</a>
<a href="section-727-chapter-7-discharge.html">§727</a>
<a href="section-1325-plan-confirmation.html">§1325</a>
<a href="section-341-meeting-of-creditors.html">§341</a>
<a href="section-524-discharge-injunction.html">§524</a>
<a href="section-547-preferences.html">§547</a>
<a href="section-548-fraudulent-transfers.html">§548</a>
<a href="section-707-chapter-7-dismissal.html">§707</a>
<a href="section-1141-chapter-11-discharge.html">§1141</a>
<a href="section-1322-plan-contents.html">§1322</a>
<br>
<strong class="nav-label">Browse:</strong> <a href="/districts/">Districts</a>
<a href="/states/">States</a>
<a href="/judges/">Judges</a>
<span class="sep">|</span>
<strong class="nav-label">Data:</strong>
<a href="chapter-13-failure-rate.html">Failure Rates</a>
<a href="chapter-13-success-rate-by-state.html">Success by State</a>
<a href="caselaw.html">Case Law</a>
<span class="sep">|</span>
<strong class="nav-label">For:</strong>
<a href="for-debtors.html">Debtors</a>
<a href="for-attorneys.html">Attorneys</a>
<a href="for-trustees.html">Trustees</a>
<a href="for-judges.html">Judges</a>
<a href="for-researchers.html">Researchers</a>
<span class="sep">|</span>
<a href="glossary.html">Glossary</a>
<a href="before-you-file.html">Before You File</a>
<a href="reading.html">Reading List</a>
<a href="bankruptcy-myths.html">Myths</a>
<a href="bankruptcy-concealment.html">Concealment</a>
<span class="sep">|</span>
<a href="https://1328f.org/support/" style="color:#238636;font-weight:600">Support This Research</a>
</div>
</nav>
<script>document.addEventListener('DOMContentLoaded',function(){var b=document.querySelector('.nav-toggle');if(b)b.addEventListener('click',function(){var l=document.querySelector('.nav-links');l.classList.toggle('open');b.setAttribute('aria-expanded',l.classList.contains('open'))})});</script>
<div style="background:linear-gradient(135deg,#0d2137,#122a44);border:1px solid #1f4068;border-radius:6px;padding:0.6rem 1.2rem;margin:1rem auto;max-width:900px;text-align:center;display:flex;align-items:center;justify-content:center;gap:0.75rem;flex-wrap:wrap">
<svg width="18" height="18" viewbox="0 0 20 20" fill="none" style="flex-shrink:0"><path d="M10 1l2.39 4.84L18 6.71l-4 3.9.94 5.5L10 13.77 5.06 16.1 6 10.6 2 6.71l5.61-.87L10 1z" fill="#f0c14b"></path></svg>
<span style="color:#f0f6fc;font-size:0.85rem"><strong>Cited by the federal judiciary</strong> -- This tool's data was accepted by the Advisory Committee on Bankruptcy Rules as <a href="https://www.uscourts.gov/rules-policies/records-and-archives-rules-committees/rules-suggestions" style="color:#58a6ff">Suggestion 26-BK-3</a></span>
</div>
<div style="background:#161b22;border:1px solid #30363d;border-radius:6px;padding:0.6rem 1.2rem;margin:0 auto 1rem;max-width:900px;text-align:center;font-size:0.85rem;color:#9eaab6">
This analysis is backed by <strong style="color:#e6edf3">5.1 million federal bankruptcy cases</strong>. <a href="/check.html" style="color:#58a6ff">Check your eligibility</a> or <a href="/dashboard.html" style="color:#58a6ff">explore the data</a>.
</div>
<div class="container">
<div class="breadcrumb">
<a href="index.html">Screener</a> / <a href="chapter-7.html">Chapter 7</a> / Complete Guide
</div>
<h1>Chapter 7 Bankruptcy: The Complete Guide</h1>
<p class="subtitle">Everything you need to know about filing Chapter 7 -- who qualifies, what happens to your property, which debts get wiped out, how much it costs, and what federal data shows about outcomes. Written in plain English for real people.</p>
<div class="toc">
<p>In this guide</p>
<ol>
<li><a href="#what-is-chapter-7">What Is Chapter 7 Bankruptcy?</a></li>
<li><a href="#who-qualifies">Who Qualifies?</a></li>
<li><a href="#means-test">The Means Test Step by Step</a></li>
<li><a href="#property">What Property Can You Keep?</a></li>
<li><a href="#discharged-debts">What Debts Get Discharged?</a></li>
<li><a href="#surviving-debts">What Debts Survive?</a></li>
<li><a href="#timeline">The Chapter 7 Process Timeline</a></li>
<li><a href="#credit-counseling">Step 1: Credit Counseling</a></li>
<li><a href="#filing-petition">Step 2: Filing the Petition</a></li>
<li><a href="#automatic-stay">Step 3: The Automatic Stay</a></li>
<li><a href="#341-meeting">Step 4: The 341 Meeting</a></li>
<li><a href="#trustee">Step 5: The Trustee's Role</a></li>
<li><a href="#discharge">Step 6: Discharge</a></li>
<li><a href="#cost">How Much Does Chapter 7 Cost?</a></li>
<li><a href="#credit-score">Chapter 7 and Your Credit Score</a></li>
<li><a href="#filing-again">Can You File Chapter 7 Again?</a></li>
<li><a href="#data">What the Data Shows</a></li>
<li><a href="#faq">Frequently Asked Questions</a></li>
</ol>
</div>
<!-- ============================================================ -->
<h2 id="what-is-chapter-7">1. What Is Chapter 7 Bankruptcy?</h2>
<p>Chapter 7 is the most common form of consumer bankruptcy in the United States. It is sometimes called "liquidation bankruptcy" because the basic idea is simple: a court-appointed trustee reviews everything you own, sells anything that is not protected by law, uses the proceeds to pay your creditors, and then the court wipes out most of your remaining unsecured debts. The legal term for that wipe-out is a <strong>discharge</strong>.</p>
<p>The word "liquidation" sounds scary, but here is what actually happens in most cases: nothing gets sold. The overwhelming majority of Chapter 7 cases -- roughly 95% nationally -- are classified as "no-asset" cases. That means the trustee looks at your property, determines that everything you own falls within the legal protections called exemptions, files a report saying there is nothing to distribute, and the case closes. You keep your stuff and walk away with your debts erased.</p>
<p>Chapter 7 is governed by <a href="https://www.law.cornell.edu/uscode/text/11/chapter-7">11 U.S.C. Chapter 7</a> of the Bankruptcy Code. It has been available to individuals and businesses since the modern Bankruptcy Code was enacted in 1978, though significant changes were made by the Bankruptcy Abuse Prevention and Consumer Protection Act (BAPCPA) in 2005, most notably the addition of the <a href="https://meanstest.org" title="Bankruptcy Means Test -- Open Bankruptcy Project" target="_blank" rel="noopener">means test</a>.</p>
<div class="statute-box">
<div class="label">Chapter 7 vs. Chapter 13</div>
<p>The key difference is time and structure. Chapter 7 wipes out debts in about 3 to 4 months with no <a href="https://chapter13plan.org" title="Chapter 13 Repayment Plan -- Open Bankruptcy Project" target="_blank" rel="noopener">repayment plan</a>. <a href="chapter-13.html">Chapter 13</a> requires you to make monthly payments to a trustee for 3 to 5 years, but lets you keep more property and catch up on mortgage or car payments. If you fail the Chapter 7 <a href="https://meanstest.org" title="Bankruptcy Means Test -- Open Bankruptcy Project" target="_blank" rel="noopener">means test</a>, Chapter 13 is usually the alternative.</p>
</div>
<p>Chapter 7 is available to individuals, married couples filing jointly, corporations, partnerships, and LLCs. However, business entities that file Chapter 7 do not receive a discharge -- the entity is simply wound down and dissolved. Only individual debtors get the <a href="https://bankruptcyfreshstart.org" title="Fresh Start After Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">fresh start</a>.</p>
<!-- ============================================================ -->
<h2 id="who-qualifies">2. Who Qualifies for Chapter 7?</h2>
<p>Not everyone can file Chapter 7. Since 2005, individual debtors with primarily consumer debts must pass a <strong>means test</strong> under <a href="https://www.law.cornell.edu/uscode/text/11/707">11 U.S.C. Section 707(b)</a>. The <a href="https://meanstest.org" title="Bankruptcy Means Test -- Open Bankruptcy Project" target="_blank" rel="noopener">means test</a> is designed to prevent people who can afford to repay some of their debts from using Chapter 7 to avoid doing so.</p>
<p>The following categories of filers are <strong>exempt from the means test</strong> entirely:</p>
<ul>
<li><strong>Debtors with primarily business debts</strong> -- If more than 50% of your debts are business-related rather than consumer debts, the <a href="https://meanstest.org" title="Bankruptcy Means Test -- Open Bankruptcy Project" target="_blank" rel="noopener">means test</a> does not apply.</li>
<li><strong>Disabled veterans</strong> -- Veterans whose debts were incurred primarily during active duty or homeland defense are exempt under Section 707(b)(2)(D).</li>
<li><strong>National Guard and Reserve members</strong> -- Those called to active duty for at least 90 days after September 11, 2001, get a temporary exemption.</li>
<li><strong>Business entities</strong> -- Corporations, LLCs, and partnerships do not take the <a href="https://meanstest.org" title="Bankruptcy Means Test -- Open Bankruptcy Project" target="_blank" rel="noopener">means test</a> (but also do not receive a discharge).</li>
</ul>
<p>For everyone else, the <a href="https://meanstest.org" title="Bankruptcy Means Test -- Open Bankruptcy Project" target="_blank" rel="noopener">means test</a> determines whether your income is low enough to file Chapter 7 or whether you must file Chapter 13 instead.</p>
<div class="green-box">
<div class="label">Quick check</div>
<p>The U.S. Trustee Program publishes updated median income figures by state and household size. You can check the current numbers at <a href="https://www.justice.gov/ust/means-testing">justice.gov/ust/means-testing</a>. As a rough guide: for a household of four, the 2024 median income thresholds range from about $73,000 in some Southern states to over $120,000 in Hawaii, New Jersey, and Connecticut.</p>
</div>
<!-- ============================================================ -->
<h2 id="means-test">3. The Means Test Step by Step</h2>
<p>The means test is a two-part calculation that determines whether your Chapter 7 filing would be considered an "abuse" under Section 707(b). It uses a standardized formula -- your attorney cannot argue around it, and neither can you.</p>
<h3>Part 1: The income comparison</h3>
<p>First, calculate your <strong>current monthly income (CMI)</strong>. Despite the name, this is not your income right now -- it is the average of your gross income over the 6 full calendar months before your filing date. It includes wages, salary, bonuses, commissions, rental income, business income, pension payments, and regular contributions from others. It does not include Social Security benefits or payments to victims of war crimes or terrorism.</p>
<p>Multiply your CMI by 12 to get an annualized figure, then compare it to the median household income for your state and household size:</p>
<ul>
<li><strong>Below the median:</strong> You pass. You qualify for Chapter 7 automatically. No further calculation is needed.</li>
<li><strong>Above the median:</strong> Move to Part 2.</li>
</ul>
<h3>Part 2: The expense deduction</h3>
<p>If your income exceeds the median, the test deducts certain expenses to calculate your monthly disposable income. These are not your actual expenses -- they are standardized amounts set by the IRS (for housing, food, transportation, and other necessities) plus your actual payments on secured debts like mortgages and car loans.</p>
<p>After deductions, the test produces a number representing your monthly disposable income. The outcome depends on how much is left:</p>
<table>
<tr><th scope="col">Monthly disposable income</th><th scope="col">Result</th></tr>
<tr><td>Less than $166.67/month ($10,000 over 60 months)</td><td><span class="check-icon">✓</span> You pass -- Chapter 7 is available</td></tr>
<tr><td>$166.67 to $277.78/month</td><td>Depends on how much of your unsecured debt you could repay over 5 years</td></tr>
<tr><td>More than $277.78/month ($16,667 over 60 months)</td><td><span class="x-icon">✗</span> Presumption of abuse -- Chapter 7 is likely blocked</td></tr>
</table>
<div class="warning-box">
<div class="label">What happens if you fail</div>
<p>Failing the means test does not mean you cannot file bankruptcy at all. It means the court presumes that filing Chapter 7 would be an abuse. The U.S. Trustee or a creditor can file a motion to dismiss your case. In practice, most people who fail the means test simply file <a href="chapter-13.html">Chapter 13</a> instead, which allows them to repay debts over 3 to 5 years. You can also try to rebut the presumption by showing "special circumstances" such as a serious medical condition or a call to active military duty.</p>
</div>
<p>The official means test form is <a href="https://www.uscourts.gov/forms/means-test-forms/chapter-7-means-test-calculation">Form 122A</a> (three pages). An interactive calculator is available at <a href="https://www.meanstest.org">meanstest.org</a>.</p>
<!-- ============================================================ -->
<h2 id="property">4. What Property Can You Keep?</h2>
<p>When you file Chapter 7, everything you own becomes part of the "bankruptcy estate" under <a href="https://www.law.cornell.edu/uscode/text/11/541">Section 541</a>. But that does not mean the trustee takes everything. <strong>Exemption laws</strong> protect certain property from liquidation. If your property falls within the exemption limits, you keep it.</p>
<p>There are two systems of exemptions, and which one you use depends on your state:</p>
<h3>Federal exemptions (Section 522(d))</h3>
<p>Available in about 18 states that allow debtors to choose between federal and state exemptions. As of 2024, the key federal exemptions include:</p>
<table>
<tr><th scope="col">Property type</th><th scope="col">Federal exemption amount</th></tr>
<tr><td>Homestead (equity in your primary residence)</td><td>$27,900</td></tr>
<tr><td>Motor vehicle</td><td>$4,450</td></tr>
<tr><td>Household goods (per item)</td><td>$700 per item, $14,875 total</td></tr>
<tr><td>Jewelry</td><td>$1,875</td></tr>
<tr><td>Wildcard (any property)</td><td>$1,475 + up to $13,950 of unused homestead</td></tr>
<tr><td>Tools of trade</td><td>$2,800</td></tr>
<tr><td>Life insurance (cash value)</td><td>$14,875</td></tr>
<tr><td>Personal injury recoveries</td><td>$27,900</td></tr>
</table>
<h3>State exemptions</h3>
<p>Every state has its own exemption scheme, and some are dramatically more generous than the federal exemptions. Key variations:</p>
<ul>
<li><strong>Homestead:</strong> Texas, Florida, Kansas, Iowa, and South Dakota offer unlimited homestead exemptions -- you can protect a home worth any amount (with acreage limits). Other states cap homestead protection at amounts ranging from $5,000 (Kentucky) to $600,000+ (Massachusetts, Nevada).</li>
<li><strong>Vehicles:</strong> Ranges from $1,000 (Alabama) to over $12,000 (some Midwestern states). Missouri allows $3,000.</li>
<li><strong>Retirement accounts:</strong> Nearly every state fully exempts 401(k)s, IRAs, and pension benefits. The Bankruptcy Code itself protects ERISA-qualified retirement plans under Section 541(c)(2), and IRAs are protected up to about $1.5 million under Section 522(n).</li>
<li><strong>Social Security:</strong> Always 100% exempt -- this is protected by both federal and state law.</li>
</ul>
<div class="statute-box">
<div class="label">Practical reality</div>
<p>Most people who file Chapter 7 own little or no non-exempt property. Their car is worth less than the exemption, they rent or have little home equity, and their personal belongings have minimal resale value. This is why approximately 95% of Chapter 7 cases are no-asset cases. The trustee files a "no distribution" report and moves on.</p>
</div>
<p>You must claim your exemptions on Schedule C when you file. Failing to claim an exemption can mean losing property you were entitled to keep. Get this right.</p>
<!-- ============================================================ -->
<h2 id="discharged-debts">5. What Debts Get Discharged?</h2>
<p>The Chapter 7 discharge under <a href="https://www.law.cornell.edu/uscode/text/11/727">Section 727</a> eliminates your personal liability on most unsecured debts. Once a debt is discharged, the creditor can never collect on it again -- no calls, no lawsuits, no wage garnishments, nothing. The <a href="section-524-discharge-injunction.html">discharge injunction</a> under <a href="https://524injunction.com" title="Section 524 Discharge Injunction -- Open Bankruptcy Project" target="_blank" rel="noopener">Section 524</a> makes it permanent.</p>
<p>Debts that Chapter 7 typically wipes out:</p>
<ul>
<li><strong>Credit card debt</strong> -- All of it, regardless of how much you owe or how recently you charged</li>
<li><strong>Medical bills</strong> -- The number one cause of bankruptcy filings. All dischargeable.</li>
<li><strong>Personal loans</strong> -- Bank loans, payday loans, loans from family (yes, those too)</li>
<li><strong>Past-due utility bills</strong> -- Electric, gas, water, phone, internet</li>
<li><strong>Deficiency balances</strong> -- If your car was repossessed or your home was foreclosed and the sale did not cover the loan balance, the remaining deficiency is dischargeable</li>
<li><strong>Civil lawsuit judgments</strong> -- Most money judgments from breach of contract, negligence, or collections lawsuits</li>
<li><strong>Old lease obligations</strong> -- Past-due rent, broken lease penalties</li>
<li><strong>Bounced check fees and overdraft charges</strong></li>
<li><strong>Business debts</strong> -- If you personally guaranteed a business loan or credit card</li>
</ul>
<div class="green-box">
<div class="label">Secured debts</div>
<p>Chapter 7 discharge only eliminates your <em>personal liability</em> -- the legal obligation to pay. If a debt is secured by collateral (like a car loan or mortgage), the creditor's lien survives the bankruptcy. That means they can still repossess or foreclose if you stop paying, even after discharge. If you want to keep the collateral, you must keep making payments or "reaffirm" the debt.</p>
</div>
<!-- ============================================================ -->
<h2 id="surviving-debts">6. What Debts Survive Bankruptcy?</h2>
<p>Not all debts can be discharged. <a href="https://www.law.cornell.edu/uscode/text/11/523">Section 523(a)</a> lists specific categories of debt that survive a Chapter 7 discharge. For the full statutory breakdown, see our <a href="https://523a.org">Section 523 guide at 523a.org</a>.</p>
<p>The major <a href="https://nondischargeable.org" title="Nondischargeable Debts -- Open Bankruptcy Project" target="_blank" rel="noopener">nondischargeable debt</a> categories:</p>
<table>
<tr><th scope="col">Debt type</th><th scope="col">Code section</th><th scope="col">Notes</th></tr>
<tr><td>Child support and alimony</td><td>523(a)(5)</td><td>Never dischargeable, ever</td></tr>
<tr><td>Student loans</td><td>523(a)(8)</td><td>Unless you prove "<a href="https://bankruptcyhardship.org" title="Undue Hardship in Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">undue hardship</a>" -- which is extremely rare</td></tr>
<tr><td>Most tax debts</td><td>523(a)(1)</td><td>Some old income taxes may be dischargeable if they meet the "3-2-240" rule</td></tr>
<tr><td>Debts from fraud</td><td>523(a)(2)</td><td>If you lied on a credit application or committed fraud</td></tr>
<tr><td>Debts from willful injury</td><td>523(a)(6)</td><td>Intentional harm to a person or property</td></tr>
<tr><td>DUI-related debts</td><td>523(a)(9)</td><td>Death or personal injury caused by intoxicated driving</td></tr>
<tr><td>Government fines and penalties</td><td>523(a)(7)</td><td>Criminal fines, traffic tickets, restitution</td></tr>
<tr><td>Property settlement debts from divorce</td><td>523(a)(15)</td><td>Non-support obligations from divorce decrees</td></tr>
<tr><td>HOA fees accruing after filing</td><td>523(a)(16)</td><td>If you stay in the property</td></tr>
<tr><td>Debts not listed on your petition</td><td>523(a)(3)</td><td>If the creditor did not receive notice of the case</td></tr>
</table>
<div class="red-box">
<div class="label">The student loan exception</div>
<p>Student loans are the most controversial <a href="https://nondischargeable.org" title="Nondischargeable Debts -- Open Bankruptcy Project" target="_blank" rel="noopener">nondischargeable debt</a>. To discharge them, you must file a separate adversary proceeding within the bankruptcy case and prove "<a href="https://bankruptcyhardship.org" title="Undue Hardship in Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">undue hardship</a>" -- a standard so strict that fewer than 1% of student loan borrowers who file bankruptcy even attempt it. Courts use the Brunner test in most circuits, which requires showing (1) you cannot maintain a minimal standard of living, (2) your circumstances are likely to persist, and (3) you made good faith efforts to repay. Recent DOJ guidance has softened enforcement somewhat, but discharge remains rare.</p>
</div>
<div class="warning-box">
<div class="label">The 3-2-240 rule for taxes</div>
<p>Some old income tax debts can be discharged in Chapter 7 if all three conditions are met: (1) the tax return was due more than 3 years before filing, (2) the return was filed more than 2 years before filing, and (3) the tax was assessed more than 240 days before filing. Extensions, amended returns, and offers in compromise can affect these deadlines. Tax liens also survive bankruptcy even if the underlying debt is discharged.</p>
</div>
<!-- ============================================================ -->
<h2 id="timeline">7. The Chapter 7 Process Timeline</h2>
<p>A straightforward no-asset Chapter 7 case follows a predictable schedule. Here is what to expect from start to finish:</p>
<table>
<tr><th scope="col">Event</th><th scope="col">When</th></tr>
<tr><td>Complete credit counseling course</td><td>Within 180 days before filing</td></tr>
<tr><td>File petition, schedules, statements, and means test</td><td>Day 0</td></tr>
<tr><td><a href="section-362-automatic-stay.html">Automatic stay</a> takes effect</td><td>Immediately upon filing</td></tr>
<tr><td>Trustee assigned to the case</td><td>Within days of filing</td></tr>
<tr><td><a href="section-341-meeting-of-creditors.html">341 meeting of creditors</a></td><td>21--40 days after filing</td></tr>
<tr><td>Deadline for creditors to object to discharge</td><td>60 days after <a href="https://341meeting.org" title="341 Meeting of Creditors -- Open Bankruptcy Project" target="_blank" rel="noopener">341 meeting</a></td></tr>
<tr><td>Complete debtor education course (financial management)</td><td>Before discharge</td></tr>
<tr><td>Trustee files no-asset report (if applicable)</td><td>After <a href="https://341meeting.org" title="341 Meeting of Creditors -- Open Bankruptcy Project" target="_blank" rel="noopener">341 meeting</a></td></tr>
<tr><td>Discharge entered</td><td>~60--90 days after <a href="https://341meeting.org" title="341 Meeting of Creditors -- Open Bankruptcy Project" target="_blank" rel="noopener">341 meeting</a></td></tr>
<tr><td>Case closed</td><td>Shortly after discharge</td></tr>
</table>
<p><strong>Total time from filing to discharge:</strong> approximately 3 to 4 months for a no-asset case. Asset cases take significantly longer -- sometimes 12 to 18 months or more -- because the trustee must collect, sell, and distribute property.</p>
<!-- ============================================================ -->
<h2 id="credit-counseling">Step 1: Credit Counseling</h2>
<p>Before you can file Chapter 7, you must complete a credit counseling course from a provider approved by the U.S. Trustee Program. This is a mandatory pre-filing requirement under <a href="https://www.law.cornell.edu/uscode/text/11/109">Section 109(h)</a>. There are no exceptions except in very narrow emergency situations.</p>
<p>What to know about the credit counseling requirement:</p>
<ul>
<li>The course must be completed within <strong>180 days before filing</strong></li>
<li>It can be done online, by phone, or in person</li>
<li>It typically takes <strong>60 to 90 minutes</strong></li>
<li>Cost is usually <strong>$20 to $50</strong> (fee waivers are available for those who cannot pay)</li>
<li>You will receive a certificate of completion -- you must file this with your petition</li>
<li>The course covers budgeting, alternatives to bankruptcy, and credit management</li>
<li>If you file jointly with a spouse, both of you must complete the course</li>
</ul>
<p>A list of approved agencies is at <a href="https://www.justice.gov/ust/list-credit-counseling-agencies-approved-pursuant-11-usc-111">justice.gov/ust</a>.</p>
<div class="warning-box">
<div class="label">Do not confuse the two courses</div>
<p>There are two separate courses: (1) the pre-filing credit counseling course required before you file, and (2) the post-filing debtor education course (also called the financial management course) required before you receive your discharge. They are different courses, often from the same provider, and both are mandatory. Missing either one can delay or prevent your discharge.</p>
</div>
<!-- ============================================================ -->
<h2 id="filing-petition">Step 2: Filing the Petition</h2>
<p>The Chapter 7 petition is a package of forms filed with the bankruptcy court for the district where you live. The core documents include:</p>
<ul>
<li><strong>Voluntary Petition (Form 101)</strong> -- Basic information: name, address, prior filings, chapter</li>
<li><strong>Schedule A/B</strong> -- All your property (real estate, vehicles, bank accounts, personal belongings)</li>
<li><strong>Schedule C</strong> -- The exemptions you are claiming for each piece of property</li>
<li><strong>Schedule D</strong> -- Secured debts (mortgages, car loans)</li>
<li><strong>Schedule E/F</strong> -- Unsecured debts (credit cards, medical bills, personal loans)</li>
<li><strong>Schedule I</strong> -- Your current income</li>
<li><strong>Schedule J</strong> -- Your current expenses</li>
<li><strong>Statement of Financial Affairs (Form 107)</strong> -- Income history, payments to creditors, lawsuits, transfers</li>
<li><strong>Means Test (Form 122A-1 and 122A-2)</strong> -- The income qualification test</li>
<li><strong>Credit Counseling Certificate</strong></li>
</ul>
<p>The filing fee is <strong>$338</strong> as of 2024. You can request to pay it in up to four installments over 120 days. If your income is below 150% of the federal poverty guidelines, you can apply to have the fee waived entirely using <a href="https://www.uscourts.gov/forms/fee-waiver-forms/application-waiver-chapter-7-filing-fee-individuals">Form 103B</a>.</p>
<div class="red-box">
<div class="label">Accuracy matters</div>
<p>Your petition is signed under penalty of perjury. Failing to list all of your assets, debts, or income can result in denial of your discharge, revocation of a previously granted discharge, or criminal prosecution for bankruptcy fraud under <a href="https://www.law.cornell.edu/uscode/text/18/152">18 U.S.C. Section 152</a>. Do not hide assets. Do not omit creditors. Do not misrepresent your income. The trustee has tools to verify your information, including tax returns, bank statements, and public records searches.</p>
</div>
<!-- ============================================================ -->
<h2 id="automatic-stay">Step 3: The Automatic Stay</h2>
<p>The moment your petition hits the court's electronic filing system, the <a href="section-362-automatic-stay.html">automatic stay</a> under <a href="https://www.law.cornell.edu/uscode/text/11/362">Section 362</a> takes effect. This is an immediate, court-ordered injunction that stops nearly all creditor collection activity:</p>
<ul>
<li>Wage garnishments must stop</li>
<li>Foreclosure proceedings are halted</li>
<li>Vehicle repossession cannot proceed</li>
<li>Bank account levies are frozen</li>
<li>Collection calls and letters must cease</li>
<li>Pending lawsuits for debt collection are paused</li>
<li>Utility shutoffs are delayed for at least 20 days</li>
</ul>
<p>The stay applies to all creditors whether or not they know about the filing. A creditor who violates the stay can be held in contempt and ordered to pay actual damages, costs, attorney fees, and in some cases punitive damages under <a href="https://www.law.cornell.edu/uscode/text/11/362">Section 362(k)</a>.</p>
<p>For a detailed breakdown of what the stay covers, what it does not cover, and what happens when creditors violate it, see our full guide at <a href="https://automaticstay.org">automaticstay.org</a>.</p>
<div class="warning-box">
<div class="label">Repeat filers: reduced stay protection</div>
<p>If you had a prior bankruptcy case dismissed within the past year, the <a href="https://automaticstay.org" title="Automatic Stay in Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">automatic stay</a> in your new case lasts only 30 days unless you file a motion to extend it. If you had two or more cases dismissed in the past year, no <a href="https://automaticstay.org" title="Automatic Stay in Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">automatic stay</a> takes effect at all -- you must file a motion to impose one. These provisions under Section 362(c)(3) and (c)(4) are designed to prevent serial filings used to delay creditors.</p>
</div>
<!-- ============================================================ -->
<h2 id="341-meeting">Step 4: The 341 Meeting of Creditors</h2>
<p>Within 21 to 40 days after filing, you must attend the <a href="section-341-meeting-of-creditors.html">341 meeting of creditors</a>, named after <a href="https://www.law.cornell.edu/uscode/text/11/341">Section 341</a> of the Bankruptcy Code. Despite the name, creditors rarely show up. In most consumer Chapter 7 cases, only you, your attorney (if you have one), and the trustee are present.</p>
<p>What happens at the 341 meeting:</p>
<ul>
<li>The trustee verifies your identity (bring a photo ID and proof of Social Security number)</li>
<li>You are placed under oath</li>
<li>The trustee asks questions about your petition, schedules, and financial situation -- typically for 5 to 15 minutes</li>
<li>Common questions: Do you own real estate? Have you transferred any property recently? Are your schedules accurate? Do you understand what a discharge means?</li>
<li>Creditors may attend and ask questions, but this is uncommon in consumer cases</li>
<li>The judge does not attend the 341 meeting</li>
</ul>
<p>Many 341 meetings are now conducted by telephone or video conference. The trustee will notify you of the format. The meeting is recorded.</p>
<p>For a complete guide on what to expect, what to bring, and common mistakes, see our guide at <a href="https://341meeting.org">341meeting.org</a>.</p>
<!-- ============================================================ -->
<h2 id="trustee">Step 5: The Trustee's Role</h2>
<p>Every Chapter 7 case is assigned a trustee -- a private attorney or accountant appointed from a panel maintained by the U.S. Trustee's office. The trustee's job is to represent the interests of your creditors by finding assets that can be liquidated and distributed.</p>
<h3>No-asset cases</h3>
<p>In approximately 95% of consumer Chapter 7 cases, the trustee reviews the petition and schedules, conducts the 341 meeting, determines that all of the debtor's property is exempt or has no meaningful resale value, and files a "Report of No Distribution." The case proceeds directly to discharge. This is the best-case scenario and the most common outcome.</p>
<h3>Asset cases</h3>
<p>In the remaining cases, the trustee identifies non-exempt property and takes steps to liquidate it. This can include:</p>
<ul>
<li>Selling real estate, vehicles, or valuable personal property</li>
<li>Recovering money from bank accounts above the exemption limit</li>
<li>Pursuing fraudulent transfers -- property you gave away or sold for less than fair value before filing</li>
<li>Pursuing preference payments -- repaying certain creditors within 90 days before filing (or 1 year for payments to family members)</li>
<li>Suing to collect debts owed to you</li>
</ul>
<p>The trustee is compensated from the assets they collect -- typically 25% of the first $5,000, 10% of the next $45,000, and 5% of amounts above $50,000. This fee structure gives trustees an incentive to find assets, which is why your schedules must be accurate and complete.</p>
<div class="statute-box">
<div class="label">Abandonment</div>
<p>The trustee can "abandon" property that is burdensome to the estate or of inconsequential value under Section 554. This is common with underwater property (where the debt exceeds the value) or property that would cost more to sell than it is worth. Abandoned property reverts to the debtor.</p>
</div>
<!-- ============================================================ -->
<h2 id="discharge">Step 6: Discharge</h2>
<p>The discharge is the entire point of filing Chapter 7. It is a court order under <a href="https://www.law.cornell.edu/uscode/text/11/727">Section 727</a> that permanently eliminates your personal liability on all dischargeable debts. The discharge is typically entered approximately 60 to 90 days after the 341 meeting, assuming no creditor files an objection and you have completed your debtor education course.</p>
<p>What discharge means in practice:</p>
<ul>
<li>Discharged debts are permanently unenforceable -- the creditor can never collect</li>
<li>The <a href="section-524-discharge-injunction.html">discharge injunction</a> under Section 524 prohibits any act to collect a discharged debt</li>
<li>Creditors must update their records to reflect the discharge</li>
<li>You are no longer legally obligated to pay the debt</li>
<li>Creditors who attempt to collect on discharged debts can be held in contempt of court</li>
</ul>
<h3>Grounds for denying discharge</h3>
<p>The court can deny your entire discharge (not just individual debts) under <a href="https://www.law.cornell.edu/uscode/text/11/727">Section 727(a)</a> if:</p>
<ul>
<li>You transferred, destroyed, or concealed property within 1 year of filing with intent to hinder creditors</li>
<li>You concealed, destroyed, or failed to keep financial records</li>
<li>You committed perjury or made a false oath in your case</li>
<li>You failed to explain a loss of assets</li>
<li>You refused to obey a court order or testify</li>
<li>You received a Chapter 7 or Chapter 11 discharge within the past 8 years</li>
<li>You received a Chapter 13 discharge within the past 6 years (with exceptions)</li>
</ul>
<p>Discharge denial is the nuclear option -- it means you went through the entire bankruptcy process, your assets were potentially liquidated, and you got nothing in return. It is rare in honest cases but real in cases involving fraud or concealment.</p>
<!-- ============================================================ -->
<h2 id="cost">14. How Much Does Chapter 7 Cost?</h2>
<p>The total cost of a Chapter 7 case depends on whether you hire an attorney and where you live.</p>
<h3>Court filing fee</h3>
<p>The filing fee is <strong>$338</strong> (as of 2024). This is set by the Judicial Conference of the United States and is the same in every federal district. You can pay in installments, and fee waivers are available for people below 150% of the poverty line.</p>
<h3>Attorney fees</h3>
<p>Attorney fees for consumer Chapter 7 cases vary significantly by region:</p>
<table>
<tr><th scope="col">Region</th><th scope="col">Typical range</th><th scope="col">Approximate average</th></tr>
<tr><td>Rural South and Midwest</td><td>$800 -- $1,500</td><td>$1,100</td></tr>
<tr><td>Mid-size metropolitan areas</td><td>$1,000 -- $2,000</td><td>$1,500</td></tr>
<tr><td>Major cities (NYC, LA, Chicago, SF)</td><td>$1,500 -- $3,500</td><td>$2,200</td></tr>
<tr><td>Complex cases (business assets, adversary proceedings)</td><td>$2,500 -- $5,000+</td><td>Varies</td></tr>
</table>
<p>Most bankruptcy attorneys require full payment before filing because they cannot collect fees from you after you receive a discharge (the debt would be discharged). Some offer payment plans leading up to the filing date.</p>
<h3>Credit counseling and debtor education courses</h3>
<p>The two mandatory courses cost approximately <strong>$20 to $50 each</strong>, for a total of $40 to $100. Fee waivers are available from many providers.</p>
<h3>Filing pro se (without an attorney)</h3>
<p>You have the legal right to file Chapter 7 without an attorney. Approximately 8% to 10% of Chapter 7 cases are filed pro se. However, pro se filings carry higher risks: they are more likely to be dismissed for procedural errors, more likely to miss available exemptions, and more likely to encounter problems at the 341 meeting. If your case is straightforward, it is possible. If there are any complications -- non-exempt assets, potential preference payments, questions about discharge eligibility -- hiring an attorney is strongly recommended.</p>
<div class="statute-box">
<div class="label">Total typical cost</div>
<p>For a standard consumer Chapter 7 case with an attorney: <strong>$1,500 to $2,500 all-in</strong> (filing fee + attorney fee + course fees). For a pro se filing: <strong>$380 to $440</strong> (filing fee + course fees). If the filing fee is waived: <strong>$40 to $100</strong> (course fees only).</p>
</div>
<!-- ============================================================ -->
<h2 id="credit-score">15. Chapter 7 and Your Credit Score</h2>
<p>Filing Chapter 7 will appear on your credit report for <strong>10 years</strong> from the filing date. This is the longest reporting period of any bankruptcy chapter -- Chapter 13 stays on your report for 7 years.</p>
<p>The immediate impact on your credit score depends on where you start:</p>
<ul>
<li><strong>If your score was already low</strong> (500s-600s) due to missed payments, collections, and charge-offs, the bankruptcy may cause a relatively small additional drop -- perhaps 50 to 100 points. Some people in this situation actually see their score stabilize or improve within months of discharge because the negative accounts are now resolved.</li>
<li><strong>If your score was still relatively high</strong> (700+), the drop will be more dramatic -- potentially 150 to 200 points or more.</li>
</ul>
<h3>Rebuilding after Chapter 7</h3>
<p>Credit rebuilding begins immediately after discharge. A realistic timeline:</p>
<table>
<tr><th scope="col">Timeframe after discharge</th><th scope="col">What to expect</th></tr>
<tr><td>0 -- 6 months</td><td>Secured credit card (with $200--$500 deposit). Score begins recovering.</td></tr>
<tr><td>6 -- 12 months</td><td>Small unsecured credit cards may become available. Score typically reaches 600+.</td></tr>
<tr><td>1 -- 2 years</td><td>Auto loans available (at higher interest rates). Score often 620--660.</td></tr>
<tr><td>2 -- 3 years</td><td>FHA mortgage potentially available (2-year waiting period from discharge). Score 650+.</td></tr>
<tr><td>4+ years</td><td>Conventional mortgage available. Score can reach 700+ with responsible credit use.</td></tr>
</table>
<p>The key factors in rebuilding are consistent on-time payments, low credit utilization, and time. Many people who file Chapter 7 achieve a higher credit score within 2 to 3 years than they had when they filed.</p>
<p>For a deeper look at how long bankruptcy stays on your credit report, see <a href="how-long-does-bankruptcy-stay-on-credit.html">How Long Does Bankruptcy Stay on Credit?</a></p>
<!-- ============================================================ -->
<h2 id="filing-again">16. Can You File Chapter 7 Again?</h2>
<p>Yes, but there are mandatory waiting periods. The Bankruptcy Code imposes strict time bars between discharge grants:</p>
<table>
<tr><th scope="col">Prior case chapter</th><th scope="col">New case chapter</th><th scope="col">Waiting period</th><th scope="col">Code section</th></tr>
<tr><td>Chapter 7</td><td>Chapter 7</td><td><strong>8 years</strong></td><td><a href="section-727-chapter-7-discharge.html">727(a)(8)</a></td></tr>
<tr><td>Chapter 7</td><td>Chapter 13</td><td><strong>4 years</strong></td><td><a href="explainer.html">1328(f)(1)</a></td></tr>
<tr><td>Chapter 13</td><td>Chapter 7</td><td><strong>6 years</strong>*</td><td><a href="727a8-discharge-bar.html">727(a)(9)</a></td></tr>
<tr><td>Chapter 13</td><td>Chapter 13</td><td><strong>2 years</strong></td><td><a href="explainer.html">1328(f)(2)</a></td></tr>
</table>
<p>*The 6-year bar under 727(a)(9) has two exceptions: if you paid 100% of unsecured claims in the prior Chapter 13, or if you paid at least 70% in good faith with best-effort payments.</p>