-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchapter-13-complete-guide.html
More file actions
1314 lines (1116 loc) · 88.6 KB
/
Copy pathchapter-13-complete-guide.html
File metadata and controls
1314 lines (1116 loc) · 88.6 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 13 Bankruptcy -- Complete Guide to Repayment Plans, Eligibility, and Discharge [2026]</title>
<meta name="description" content="Complete Chapter 13 guide covering repayment plans, eligibility, plan confirmation, the super discharge, cramdown, and trustee payments. Includes 48% dismissal rate data.">
<meta name="keywords" content="chapter 13 bankruptcy, chapter 13 plan, chapter 13 repayment plan, chapter 13 eligibility, chapter 13 discharge, chapter 13 dismissal rate, chapter 13 completion rate, chapter 13 process, save home bankruptcy, cramdown car loan, chapter 13 super discharge, 1328 discharge, chapter 13 plan confirmation, chapter 13 trustee">
<link rel="canonical" href="https://1328f.com/chapter-13-complete-guide.html">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<!-- Open Graph -->
<meta property="og:title" content="Chapter 13 Bankruptcy: The Complete Guide">
<meta property="og:description" content="How Chapter 13 repayment plans work, who qualifies, what debts get paid, how to save your home and car, the complete 8-step process, and actual completion rates from 5.1 million federal cases.">
<meta property="og:type" content="article">
<meta property="og:url" content="https://1328f.com/chapter-13-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 13 Bankruptcy: The Complete Guide">
<meta name="twitter:description" content="Everything you need to know about Chapter 13 bankruptcy -- repayment plans, eligibility, the 8-step process, and actual completion rates from federal 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": "What is Chapter 13 bankruptcy?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Chapter 13 bankruptcy is a federal court process that lets individuals with regular income reorganize their debts through a 3-to-5-year repayment plan. Instead of liquidating assets like Chapter 7, you keep your property and make monthly payments to a bankruptcy trustee, who distributes the money to creditors. At the end of the plan, remaining qualifying debts are discharged. Chapter 13 is governed by 11 U.S.C. Sections 1301 through 1330."
}
},
{
"@type": "Question",
"name": "How much does Chapter 13 bankruptcy cost?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The filing fee for Chapter 13 is $313 as of 2024. Attorney fees vary significantly by district but typically range from $2,500 to $6,000. Many districts have a 'no-look' fee -- a flat amount the court approves without detailed billing review. Attorney fees in Chapter 13 are usually paid through the plan itself, meaning the cost is spread over 3 to 5 years rather than paid upfront. Additional costs include the required credit counseling course ($15 to $50) and debtor education course ($15 to $50)."
}
},
{
"@type": "Question",
"name": "What is the Chapter 13 completion rate?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Nationally, roughly one-third to 40% of Chapter 13 cases end in discharge. The remainder are dismissed before the debtor completes the plan. This means the majority of people who file Chapter 13 do not successfully complete it. Completion rates vary dramatically by district, attorney, and debtor circumstances. Some districts see discharge rates above 60%, while others fall below 30%. These figures come from analysis of 5.1 million federal bankruptcy cases in the FJC Integrated Database."
}
},
{
"@type": "Question",
"name": "Can I keep my house in Chapter 13?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. One of the primary advantages of Chapter 13 is the ability to save your home from foreclosure. If you have fallen behind on mortgage payments, Chapter 13 lets you cure the arrears over the life of the plan while maintaining regular ongoing mortgage payments. The automatic stay stops foreclosure proceedings the moment you file. However, you must have sufficient income to make both your plan payment and your ongoing mortgage payment. The plan must propose to cure the entire arrearage by its completion."
}
},
{
"@type": "Question",
"name": "Can I file Chapter 13 again after a previous bankruptcy?",
"acceptedAnswer": {
"@type": "Answer",
"text": "You can always file a new Chapter 13 case, but whether you can receive a discharge depends on Section 1328(f). If your prior discharge was in a Chapter 7, 11, or 12 case, you must wait 4 years from the filing date of that case to the filing date of the new Chapter 13. If the prior discharge was in another Chapter 13, the waiting period is 2 years. Filing inside these windows means completing 3 to 5 years of payments with no discharge at the end."
}
},
{
"@type": "Question",
"name": "What is the Chapter 13 super discharge?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The super discharge refers to Chapter 13's ability to eliminate certain debts that survive a Chapter 7 case. Under Section 1328(a), Chapter 13 discharge has fewer exceptions than Chapter 7 under Section 523(a). Debts for willful and malicious injury to property (not persons), certain divorce property settlements, some government fines, and post-petition HOA fees can be discharged in Chapter 13 but not in Chapter 7. The term 'super discharge' is informal and does not appear in the statute."
}
}
]
}
</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: 28px;
margin-bottom: 12px;
line-height: 1.3;
}
.subtitle {
font-size: 17px;
color: var(--text-muted);
margin-bottom: 32px;
line-height: 1.6;
}
h2 {
font-size: 21px;
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: 12px 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol {
margin: 12px 0 12px 24px;
}
li { margin-bottom: 8px; }
.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;
}
.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; }
table {
width: 100%;
border-collapse: collapse;
margin: 16px 0;
font-size: 14px;
}
th, td {
padding: 10px 14px;
border: 1px solid var(--border);
text-align: left;
}
th {
background: var(--surface);
font-weight: 600;
font-size: 13px;
text-transform: uppercase;
color: var(--text-muted);
}
.check-icon { color: var(--green); }
.x-icon { color: var(--red); }
.toc {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 6px;
padding: 20px 24px;
margin: 24px 0;
}
.toc .label {
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 12px;
}
.toc ol {
margin: 0 0 0 20px;
}
.toc li {
margin-bottom: 6px;
font-size: 15px;
}
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }
.stat-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 16px;
margin: 24px 0;
}
.stat-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 6px;
padding: 20px;
text-align: center;
}
.stat-card .number {
font-size: 32px;
font-weight: 700;
line-height: 1.2;
}
.stat-card .label {
font-size: 13px;
color: var(--text-muted);
margin-top: 4px;
}
.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); }
.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; }
.stat-grid { grid-template-columns: 1fr; }
.stat-card .number { font-size: 26px; }
}
</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 13 Complete Guide",
"item": "https://1328f.com/chapter-13-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 13 Bankruptcy: The Complete Guide",
"description": "The complete guide to Chapter 13 bankruptcy. How repayment plans work, who qualifies, what debts get paid, how to save your home and car, the 8-step process fro",
"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-13-complete-guide.html"
},
{
"@type": "HowTo",
"name": "Chapter 13 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 for Chapter 13?"
},
{
"@type": "HowToStep",
"position": 3,
"text": "How the Repayment Plan Works"
},
{
"@type": "HowToStep",
"position": 4,
"text": "What Debts Get Paid?"
},
{
"@type": "HowToStep",
"position": 5,
"text": "What Property Can You Keep?"
},
{
"@type": "HowToStep",
"position": 6,
"text": "Saving Your Home from Foreclosure"
},
{
"@type": "HowToStep",
"position": 7,
"text": "Saving Your Car"
},
{
"@type": "HowToStep",
"position": 8,
"text": "The Chapter 13 Process Timeline"
},
{
"@type": "HowToStep",
"position": 9,
"text": "Step 1: Credit Counseling"
},
{
"@type": "HowToStep",
"position": 10,
"text": "Step 2: Filing the Petition and Proposing a Plan"
}
]
},
{
"@type": "WebPage",
"name": "Chapter 13 Bankruptcy: The Complete Guide",
"url": "https://1328f.com/chapter-13-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/forms-rules/records-rules-committees/suggestions/dan-brown-26-bk-3" style="color:#58a6ff">Suggestion 26-BK-3</a> and <a href="https://www.uscourts.gov/forms-rules/records-rules-committees/suggestions/dan-brown-26-bk-5" style="color:#58a6ff">Suggestion 26-BK-5</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-13.html">Chapter 13</a> / Complete Guide
</div>
<h1>Chapter 13 Bankruptcy: The Complete Guide</h1>
<p class="subtitle">Everything you need to know about Chapter 13 repayment plans -- who qualifies, how the plan works, what you can keep, the step-by-step process from filing to discharge, and what the actual completion data shows. Written in plain English, backed by 5.1 million federal cases.</p>
<div class="toc">
<div class="label">Table of Contents</div>
<ol>
<li><a href="#what-is-chapter-13">What Is Chapter 13 Bankruptcy?</a></li>
<li><a href="#who-qualifies">Who Qualifies for Chapter 13?</a></li>
<li><a href="#how-plan-works">How the Repayment Plan Works</a></li>
<li><a href="#what-debts-get-paid">What Debts Get Paid?</a></li>
<li><a href="#what-property-keep">What Property Can You Keep?</a></li>
<li><a href="#saving-your-home">Saving Your Home from Foreclosure</a></li>
<li><a href="#saving-your-car">Saving Your Car</a></li>
<li><a href="#timeline">The Chapter 13 Process Timeline</a></li>
<li><a href="#step-1-credit-counseling">Step 1: Credit Counseling</a></li>
<li><a href="#step-2-filing">Step 2: Filing the Petition and Proposing a Plan</a></li>
<li><a href="#step-3-automatic-stay">Step 3: The Automatic Stay</a></li>
<li><a href="#step-4-341-meeting">Step 4: The 341 Meeting of Creditors</a></li>
<li><a href="#step-5-confirmation">Step 5: Plan Confirmation</a></li>
<li><a href="#step-6-making-payments">Step 6: Making Payments</a></li>
<li><a href="#step-7-plan-modification">Step 7: Plan Modification</a></li>
<li><a href="#step-8-discharge">Step 8: Discharge</a></li>
<li><a href="#super-discharge">The Chapter 13 Super Discharge</a></li>
<li><a href="#cost">How Much Does Chapter 13 Cost?</a></li>
<li><a href="#completion-rates">Chapter 13 Completion Rates -- What the Data Shows</a></li>
<li><a href="#filing-again">Can You File Chapter 13 Again?</a></li>
<li><a href="#faq">Frequently Asked Questions</a></li>
</ol>
</div>
<!-- ============================================================ -->
<h2 id="what-is-chapter-13">1. What Is Chapter 13 Bankruptcy?</h2>
<p>Chapter 13 bankruptcy is a reorganization process for individuals with regular income. Instead of giving up your property like in <a href="chapter-7.html">Chapter 7</a>, you propose a <a href="https://chapter13plan.org" title="Chapter 13 Repayment Plan -- Open Bankruptcy Project" target="_blank" rel="noopener">repayment plan</a> that lasts 3 to 5 years. You make a single monthly payment to a bankruptcy trustee, who distributes the money to your creditors according to the plan. When you complete the plan, remaining qualifying debts are discharged -- meaning you no longer owe them.</p>
<p>Chapter 13 is governed by <a href="https://www.law.cornell.edu/uscode/text/11/chapter-13">11 U.S.C. Sections 1301 through 1330</a>. It is sometimes called the "wage earner's plan," though self-employed individuals with regular income also qualify.</p>
<p>The core idea is straightforward: you commit your <strong>disposable income</strong> -- what you earn minus what you reasonably need to live -- to paying creditors for a set period. In exchange, you keep your property, get protection from creditors, and get a <a href="https://bankruptcyfreshstart.org" title="Fresh Start After Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">fresh start</a> at the end.</p>
<div class="statute-box">
<div class="label">Key Concept</div>
<p>Chapter 13 is the only bankruptcy chapter that lets individual debtors cure mortgage arrears, strip junior liens, and cram down car loans -- all while keeping every piece of property they own. This makes it the primary tool for saving homes and cars from foreclosure and repossession.</p>
</div>
<p>Chapter 13 differs from other chapters in important ways. Unlike <a href="chapter-7.html">Chapter 7</a>, there is no liquidation of assets. Unlike <a href="chapter-11.html">Chapter 11</a>, it is designed for individuals rather than businesses, is simpler, and is less expensive. Unlike <a href="chapter-12.html">Chapter 12</a>, it is not limited to farmers and fishermen.</p>
<p>The trade-off is time. Chapter 7 cases are typically over in about 4 months. Chapter 13 requires 3 to 5 years of monthly payments before you receive a discharge. And as the data shows, the majority of people who start Chapter 13 do not finish -- a fact that carries serious consequences.</p>
<!-- ============================================================ -->
<h2 id="who-qualifies">2. Who Qualifies for Chapter 13?</h2>
<p>Chapter 13 is available to individuals (including sole proprietors) who meet two requirements:</p>
<ol>
<li><strong>Regular income.</strong> You must have a sufficiently stable and regular source of income to make plan payments. This includes wages, salary, commissions, self-employment income, Social Security, disability, pension, and even regular contributions from a spouse or partner. The income does not need to come from a traditional job -- it just needs to be predictable enough that the court can rely on it for a multi-year plan.</li>
<li><strong>Debt below the limit.</strong> Your total debts -- secured and unsecured combined -- must fall below the statutory ceiling.</li>
</ol>
<div class="statute-box">
<div class="label">11 U.S.C. Section 109(e) -- Debt Limits</div>
<p>As of the Bankruptcy Threshold Adjustment and Technical Corrections Act of 2022, the combined debt limit for Chapter 13 is <strong>$2,750,000</strong> for both secured and unsecured debts. Previously, there were separate caps for secured debts ($1,395,875) and unsecured debts ($465,275). The 2022 law consolidated these into one combined limit. Congress adjusts this threshold periodically -- always check the current figure before filing.</p>
</div>
<p>There is <strong>no means test</strong> for Chapter 13. Unlike Chapter 7, you do not need to prove that your income is below the state median to be eligible. However, your income level determines how long your plan must last:</p>
<ul>
<li><strong>Below median income for your state and household size:</strong> your plan can be as short as 36 months (3 years)</li>
<li><strong>At or above median income:</strong> your plan must be 60 months (5 years)</li>
</ul>
<p>Corporations and partnerships cannot file Chapter 13 -- only individuals (including married couples filing jointly). If you owe more than $2,750,000 or run a large business, <a href="chapter-11.html">Chapter 11</a> may be the appropriate alternative.</p>
<div class="warning-box">
<div class="label">Important Requirement</div>
<p>You must be current on your tax filing obligations to file Chapter 13. Under Section 1308, you must have filed all required tax returns for the 4 years before your bankruptcy petition. If you have not filed tax returns, get them filed before you file your petition. Courts will dismiss cases where the debtor is not current on tax filings.</p>
</div>
<!-- ============================================================ -->
<h2 id="how-plan-works">3. How the Repayment Plan Works</h2>
<p>The <a href="https://chapter13plan.org" title="Chapter 13 Repayment Plan -- Open Bankruptcy Project" target="_blank" rel="noopener">Chapter 13 plan</a> is the heart of the case. It is a written proposal that tells the court and your creditors exactly how you will pay your debts over the next 3 to 5 years. You file the plan with your bankruptcy petition or within 14 days of filing.</p>
<h3>What goes into the plan</h3>
<p>A <a href="https://chapter13plan.org" title="Chapter 13 Repayment Plan -- Open Bankruptcy Project" target="_blank" rel="noopener">Chapter 13 plan</a> typically addresses:</p>
<ul>
<li><strong>Your monthly payment amount</strong> -- the single payment you will send to the trustee each month</li>
<li><strong>How long the plan will last</strong> -- 36 to 60 months depending on your income relative to the state median</li>
<li><strong>Treatment of each class of debt</strong> -- which debts get paid in full, which get a percentage, and which get nothing</li>
<li><strong>Treatment of secured debts</strong> -- whether you will keep or surrender collateral, cure arrears, or cram down the loan</li>
<li><strong>Any special provisions</strong> -- such as selling property, modifying loan terms, or stripping liens</li>
</ul>
<h3>Disposable income</h3>
<p>The amount you must pay into the plan is driven by your <strong>disposable income</strong> -- defined under <a href="https://www.law.cornell.edu/uscode/text/11/1325">Section 1325(b)</a> as your current monthly income minus reasonably necessary expenses for the maintenance and support of you and your dependents. If you are above median income, the expenses are calculated using IRS National and Local Standards rather than your actual spending.</p>
<p>The disposable income test is the most commonly litigated part of Chapter 13. Trustees frequently object to plans they believe understate income or overstate expenses. Getting this calculation right is critical to plan confirmation.</p>
<h3>Plan length</h3>
<p>The "applicable commitment period" determines how long your plan must last:</p>
<table>
<tr><th scope="col">Income Level</th><th scope="col">Minimum Plan Length</th><th scope="col">Maximum Plan Length</th></tr>
<tr><td>Below state median</td><td>36 months</td><td>60 months</td></tr>
<tr><td>At or above state median</td><td>60 months</td><td>60 months</td></tr>
</table>
<p>Below-median debtors can propose a shorter plan, but only if the plan pays all unsecured creditors in full. Above-median debtors must commit to the full 5 years unless they pay 100% of unsecured claims earlier.</p>
<!-- ============================================================ -->
<h2 id="what-debts-get-paid">4. What Debts Get Paid?</h2>
<p>Not all debts are treated equally in Chapter 13. The Bankruptcy Code establishes a strict priority system that determines who gets paid first. Your plan must respect this hierarchy.</p>
<h3>Priority order</h3>
<table>
<tr><th scope="col">Priority</th><th scope="col">Debt Type</th><th scope="col">Payment Required</th></tr>
<tr><td>1</td><td><strong>Administrative claims</strong> (trustee fees, attorney fees)</td><td>Paid in full</td></tr>
<tr><td>2</td><td><strong>Domestic support obligations</strong> (child support, alimony)</td><td>Paid in full, current and arrears</td></tr>
<tr><td>3</td><td><strong>Priority tax claims</strong> (recent income taxes, trust fund taxes)</td><td>Paid in full</td></tr>
<tr><td>4</td><td><strong>Secured claims</strong> (mortgage, car loan, tax lien)</td><td>Paid based on collateral value or contract terms</td></tr>
<tr><td>5</td><td><strong>General unsecured claims</strong> (credit cards, medical bills, personal loans)</td><td>Pro rata share of remaining funds (can be 0-100%)</td></tr>
</table>
<h3>How unsecured creditors get paid</h3>
<p>After priority and secured claims are covered, whatever money is left over goes to general unsecured creditors on a pro rata basis. In many Chapter 13 cases, unsecured creditors receive only a small percentage of what they are owed -- sometimes as low as 0% in what is called a "zero-percent plan." This is legal as long as the plan satisfies the <a href="section-1325-plan-confirmation.html">Section 1325</a> requirements.</p>
<p>The percentage unsecured creditors receive depends on three factors:</p>
<ol>
<li>How much disposable income you have after necessary expenses</li>
<li>How much must go to priority and secured claims first</li>
<li>The "best interest of creditors" test -- unsecured creditors must receive at least as much as they would have received in a Chapter 7 liquidation</li>
</ol>
<!-- ============================================================ -->
<h2 id="what-property-keep">5. What Property Can You Keep?</h2>
<p>This is one of Chapter 13's biggest advantages: <strong>you keep all of your property</strong>. There is no liquidation in Chapter 13. The trustee does not take your house, your car, your bank accounts, or your personal belongings.</p>
<p>In Chapter 7, a trustee can sell your non-exempt property to pay creditors. In Chapter 13, you keep everything -- but the trade-off is that your plan must pay unsecured creditors at least as much as they would have received if your non-exempt property had been liquidated. This is called the <strong>"best interest of creditors" test</strong> under <a href="https://www.law.cornell.edu/uscode/text/11/1325">Section 1325(a)(4)</a>.</p>
<div class="green-box">
<div class="label">Example</div>
<p>Say you own a boat worth $5,000 that is not covered by any bankruptcy exemption. In Chapter 7, the trustee could sell the boat and distribute the proceeds to creditors. In Chapter 13, you keep the boat -- but your plan must pay at least $5,000 to unsecured creditors over its life. You are essentially "buying back" your non-exempt property through your plan payments.</p>
</div>
<p>This makes Chapter 13 especially attractive for people who have significant non-exempt property -- equity in a home beyond what exemptions cover, valuable vehicles, business equipment, investments, or collections. Instead of losing them, you pay their value over time through the plan.</p>
<!-- ============================================================ -->
<h2 id="saving-your-home">6. Saving Your Home from Foreclosure</h2>
<p>Saving a home from foreclosure is one of the most common reasons people file Chapter 13. The Code provides powerful tools for this purpose.</p>
<h3>Curing mortgage arrears</h3>
<p>Under <a href="https://www.law.cornell.edu/uscode/text/11/1322">Section 1322(b)(5)</a>, your <a href="https://chapter13plan.org" title="Chapter 13 Repayment Plan -- Open Bankruptcy Project" target="_blank" rel="noopener">Chapter 13 plan</a> can cure a mortgage default over the life of the plan while you resume making regular monthly mortgage payments going forward. This means if you are 6 months behind on your mortgage, you can spread those missed payments across 3 to 5 years and catch up gradually.</p>
<p>The <a href="section-362-automatic-stay.html">automatic stay</a> stops the foreclosure the moment you file, giving you breathing room to propose a plan. As long as your plan is confirmed and you make both your regular mortgage payments and the plan payments to cure the arrears, the mortgage company cannot foreclose.</p>
<div class="warning-box">
<div class="label">The Anti-Modification Rule</div>
<p>Section 1322(b)(2) prohibits modifying the terms of a mortgage secured only by the debtor's principal residence. You cannot reduce the interest rate, extend the term, or reduce the principal balance of your home mortgage through a <a href="https://chapter13plan.org" title="Chapter 13 Repayment Plan -- Open Bankruptcy Project" target="_blank" rel="noopener">Chapter 13 plan</a>. You can only cure the default and maintain regular payments. This rule has been upheld by the Supreme Court in <em>Nobelman v. American Savings Bank</em> (1993).</p>
</div>
<h3>Lien stripping on junior liens</h3>
<p>If your home is worth less than the balance of your first mortgage, any second mortgage or home equity line of credit (HELOC) is <strong>wholly unsecured</strong> -- the junior lienholder's claim is not supported by any equity in the property. In this situation, Chapter 13 allows you to "strip" the junior lien entirely through a process governed by <a href="https://www.law.cornell.edu/uscode/text/11/506">Section 506(a)</a> and Section 1322(b)(2).</p>
<p>When a lien is stripped, the junior mortgage is reclassified as an unsecured debt and treated like <a href="https://creditcarddebtbankruptcy.org" title="Credit Card Debt and Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">credit card debt</a> in your plan. At the end of the case, the lien is removed from your property. This can eliminate tens or even hundreds of thousands of dollars in debt.</p>
<p><a href="https://lienstripping.org" title="Lien Stripping in Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">Lien stripping</a> is not available in <a href="chapter-7.html">Chapter 7</a>. This is one of the most valuable tools unique to Chapter 13.</p>
<!-- ============================================================ -->
<h2 id="saving-your-car">7. Saving Your Car</h2>
<p>Chapter 13 offers two powerful tools for dealing with car loans: the <strong>cramdown</strong> and general loan modification.</p>
<h3>Cramdown</h3>
<p>If you purchased your vehicle more than 910 days (approximately 2.5 years) before filing, you can "cram down" the car loan under <a href="https://www.law.cornell.edu/uscode/text/11/506">Section 506(a)</a>. This means you pay only the current value of the vehicle -- not the remaining loan balance. The difference is treated as unsecured debt.</p>
<div class="green-box">
<div class="label">Example</div>
<p>You owe $15,000 on a car that is now worth $8,000, and you purchased it 3 years ago. Through a cramdown, your <a href="https://chapter13plan.org" title="Chapter 13 Repayment Plan -- Open Bankruptcy Project" target="_blank" rel="noopener">Chapter 13 plan</a> would pay the secured portion ($8,000) plus interest at the court-determined rate over the plan period. The remaining $7,000 is treated as unsecured debt and may receive only pennies on the dollar -- or nothing.</p>
</div>
<h3>The 910-day rule (the "hanging paragraph")</h3>
<p>There is a critical limitation. The Bankruptcy Abuse Prevention and Consumer Protection Act of 2005 (BAPCPA) added what is commonly called the "hanging paragraph" after Section 1325(a)(9). If you purchased the vehicle within 910 days of filing, you cannot cram down the loan -- you must pay the full contract balance to keep the vehicle. This rule was designed to protect recent car lenders.</p>
<p>Count your days carefully. The 910-day cutoff is measured from the date of purchase (not the loan date) to the date of filing. If you are close to the 910-day line, it may be worth waiting to file.</p>
<h3>Interest rate reduction</h3>
<p>Even when a cramdown is not available, Chapter 13 can reduce the interest rate on a car loan to a court-determined rate based on the "prime plus" formula established by the Supreme Court in <em>Till v. SCS Credit Corp.</em> (2004). This can significantly reduce your monthly payment compared to the original contract rate, especially if you financed the vehicle at a high interest rate through a subprime lender.</p>
<!-- ============================================================ -->
<h2 id="timeline">8. The Chapter 13 Process Timeline</h2>
<p>A Chapter 13 case follows a defined sequence. Here is the full timeline from start to finish:</p>
<table>
<tr><th scope="col">Step</th><th scope="col">Timing</th></tr>
<tr><td>Credit counseling course (required)</td><td>Within 180 days before filing</td></tr>
<tr><td>File petition, schedules, and proposed plan</td><td>Day 0</td></tr>
<tr><td><a href="https://automaticstay.org" title="Automatic Stay in Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">Automatic stay</a> takes effect</td><td>Immediately upon filing</td></tr>
<tr><td>Begin plan payments to trustee</td><td>Within 30 days of filing (before confirmation)</td></tr>
<tr><td>341 <a href="https://341meeting.org" title="341 Meeting of Creditors -- Open Bankruptcy Project" target="_blank" rel="noopener">meeting of creditors</a></td><td>21 to 50 days after filing</td></tr>
<tr><td>Deadline for creditor objections to plan</td><td>Varies (usually 25-30 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>Confirmation hearing</td><td>20 to 45 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>Plan payments continue (3 to 5 years)</td><td>Monthly during plan period</td></tr>
<tr><td>Debtor education course (required)</td><td>Before discharge</td></tr>
<tr><td>Final payment and trustee's report</td><td>After all plan payments completed</td></tr>
<tr><td>Discharge entered</td><td>After plan completion and debtor education certification</td></tr>
</table>
<p>An important detail: you must start making plan payments to the trustee <strong>within 30 days of filing</strong> -- even before the plan is confirmed. This is required by <a href="https://www.law.cornell.edu/uscode/text/11/1326">Section 1326(a)(1)</a>. If the plan is not confirmed, or if you proposed a different payment amount than what is ultimately confirmed, the trustee adjusts. But you cannot wait until confirmation to start paying.</p>
<!-- ============================================================ -->
<h2 id="step-1-credit-counseling">9. Step 1: Credit Counseling</h2>
<p>Before you can file any bankruptcy petition, you must complete a credit counseling course from an agency approved by the U.S. Trustee's office. This is required by <a href="https://www.law.cornell.edu/uscode/text/11/109">Section 109(h)</a>.</p>
<p>The course must be completed within 180 days before filing. It can be done online, by phone, or in person and typically takes about 60 to 90 minutes. The cost ranges from $15 to $50, though fee waivers are available for debtors who cannot afford it.</p>
<p>The credit counseling agency will provide a certificate of completion that you must file with the court. If you file without the certificate, your case may be dismissed. This is not the same as the "debtor education" course required before discharge -- that is a separate course taken later (Step 8).</p>
<p>A list of approved agencies is available at <a href="https://www.justice.gov/ust/list-credit-counseling-agencies-approved-pursuant-11-usc-111">justice.gov</a>.</p>
<!-- ============================================================ -->
<h2 id="step-2-filing">10. Step 2: Filing the Petition and Proposing a Plan</h2>
<p>Filing a Chapter 13 case requires submitting a package of documents to the bankruptcy court:</p>
<ul>
<li><strong>Voluntary Petition</strong> -- the official form that starts the case</li>
<li><strong>Schedules A through J</strong> -- detailed lists of your property, debts, income, and expenses</li>
<li><strong>Statement of Financial Affairs (SOFA)</strong> -- questions about your financial history</li>
<li><strong>Chapter 13 Plan</strong> -- your proposed repayment plan (can be filed within 14 days of the petition)</li>
<li><strong>Credit counseling certificate</strong></li>
<li><strong>Pay stubs</strong> from the last 60 days</li>
<li><strong>Tax returns</strong> from the most recent year</li>
<li><strong>Means test forms</strong> -- used to calculate median income comparison and disposable income</li>
</ul>
<p>The filing fee is $313 (as of 2024). You can request to pay the filing fee in installments if you cannot afford to pay it all at once.</p>
<div class="warning-box">
<div class="label">Bare Petitions</div>
<p>Some attorneys file a "bare petition" -- the petition alone, without schedules, plans, or supporting documents -- to invoke the <a href="https://automaticstay.org" title="Automatic Stay in Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">automatic stay</a> quickly. The remaining documents are then due within 14 days. While this can be a legitimate emergency strategy (for example, to stop a foreclosure sale scheduled for the next day), it also carries risks. If the missing documents are not filed on time, the case will be dismissed. See <a href="what-is-a-bare-petition.html">What Is a Bare Petition?</a> for more detail.</p>
</div>
<p>Cases are filed in the bankruptcy court for the district where the debtor has lived for the greater part of the prior 180 days. If you recently moved, the proper venue may be your old district. Filing in the wrong district can cause delays and transfers.</p>
<!-- ============================================================ -->
<h2 id="step-3-automatic-stay">11. Step 3: The Automatic Stay</h2>
<p>The moment your petition is filed, the <strong><a href="section-362-automatic-stay.html">automatic stay</a></strong> takes effect under <a href="https://www.law.cornell.edu/uscode/text/11/362">Section 362</a>. This is a federal court order that immediately stops virtually all creditor collection activity:</p>
<ul>
<li>Foreclosure proceedings</li>
<li>Vehicle repossession</li>
<li><a href="https://garnishedwages.org" title="Wage Garnishment and Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">Wage garnishment</a></li>
<li>Lawsuits for debt collection</li>
<li>Collection calls and letters</li>
<li>Bank account levies</li>
<li>Utility shutoffs (for 20 days)</li>
</ul>
<p>The <a href="https://automaticstay.org" title="Automatic Stay in Bankruptcy -- Open Bankruptcy Project" target="_blank" rel="noopener">automatic stay</a> applies to all creditors, even those who have not yet received notice of the filing. Any creditor who knowingly violates the stay can be held liable for 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>
<div class="statute-box">
<div class="label">Chapter 13 Co-Debtor Stay</div>
<p>Chapter 13 includes a unique protection not found in other chapters: the <strong>co-debtor stay</strong> under <a href="https://www.law.cornell.edu/uscode/text/11/1301">Section 1301</a>. This stay protects co-signers and guarantors on consumer debts. If a friend or family member co-signed a loan with you, the creditor cannot go after the co-signer while your Chapter 13 case is active and the debt is being paid through your plan. This <a href="https://codebtorstay.org" title="Co-Debtor Stay -- Open Bankruptcy Project" target="_blank" rel="noopener">co-debtor stay</a> is exclusive to Chapter 13.</p>
</div>
<div class="red-box">
<div class="label">Repeat Filers -- Reduced Stay Protection</div>
<p>If you had a 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 under Section 362(c)(3) unless you file a motion to extend it. If you had two or more cases dismissed in the past year, no automatic stay takes effect at all under Section 362(c)(4) -- you must affirmatively ask the court to impose one. This is one of the most serious consequences of serial filing.</p>
</div>
<p>For a deeper explanation, see our <a href="section-362-automatic-stay.html">Section 362 Automatic Stay Guide</a> or visit <a href="https://automaticstay.org">automaticstay.org</a>.</p>
<!-- ============================================================ -->
<h2 id="step-4-341-meeting">12. Step 4: The 341 Meeting of Creditors</h2>
<p>Within 21 to 50 days after filing, you must attend the <strong>Section 341 meeting of creditors</strong>. Despite its name, creditors rarely attend. The meeting is typically conducted by the Chapter 13 trustee assigned to your case.</p>
<p>At the 341 meeting, the trustee will:</p>
<ul>
<li>Verify your identity (bring a government-issued photo ID and proof of Social Security number)</li>
<li>Place you under oath</li>
<li>Ask questions about your petition, schedules, income, expenses, and proposed plan</li>
<li>Identify any issues that need to be resolved before confirmation</li>
</ul>
<p>The meeting typically lasts 5 to 15 minutes. It is not held in front of a judge -- it takes place in a meeting room, often at the courthouse or trustee's office. Many districts now conduct 341 meetings by phone or video.</p>
<p>Answer questions honestly and directly. Providing false testimony at a 341 meeting is a federal crime (18 U.S.C. Section 152). If you do not know the answer to a question, say so. If the trustee identifies issues with your petition or plan, you will typically have the opportunity to amend.</p>
<p>For more on what to expect, see <a href="what-happens-at-341-meeting.html">What Happens at the 341 Meeting?</a> or visit <a href="https://341meeting.org">341meeting.org</a>.</p>
<!-- ============================================================ -->
<h2 id="step-5-confirmation">13. Step 5: Plan Confirmation</h2>
<p>After the 341 meeting, the court holds a confirmation hearing to decide whether to approve your plan. This is the most important hearing in a Chapter 13 case. Under <a href="https://www.law.cornell.edu/uscode/text/11/1325">Section 1325(a)</a>, the court must find that the plan satisfies all of the following requirements:</p>
<ol>
<li><strong>Good faith.</strong> The plan must be proposed in good faith and not by any means forbidden by law. Courts look at the totality of circumstances -- whether the plan is a genuine attempt to repay debts or an abuse of the system.</li>
<li><strong>Best interest of creditors.</strong> Unsecured creditors must receive at least as much under the plan as they would have received in a Chapter 7 liquidation. This is calculated by adding up the value of your non-exempt property.</li>
<li><strong>Disposable income / best efforts.</strong> If the trustee or an unsecured creditor objects, you must commit all of your projected disposable income for the applicable commitment period (3 or 5 years) to the plan.</li>
<li><strong>Feasibility.</strong> The debtor must be able to make all payments under the plan. If the budget is unrealistic, the court will deny confirmation.</li>
<li><strong>Secured creditor treatment.</strong> The plan must properly treat secured claims -- either paying the allowed secured claim in full with interest, surrendering the collateral, or obtaining the creditor's consent.</li>
<li><strong>Priority claims paid in full.</strong> All priority claims (domestic support obligations, taxes, etc.) must be paid in full through the plan.</li>
<li><strong>Domestic support obligations current.</strong> The debtor must be current on all post-petition domestic support obligations at the time of confirmation.</li>
<li><strong>Tax returns filed.</strong> Required tax returns for the 4 years before filing must have been filed.</li>
</ol>
<p>If the trustee or a creditor objects to the plan, you may need to amend it. Common objections include:</p>
<ul>
<li>Plan does not commit all disposable income</li>
<li>Expenses are unreasonable or overstated</li>
<li>Plan is not feasible on the debtor's income</li>
<li>Secured creditor is not receiving adequate protection</li>
<li>Plan is not in good faith</li>
</ul>
<p>The confirmation hearing typically takes place 20 to 45 days after the 341 meeting. If no one objects and the plan meets all requirements, confirmation can be quick. If there are objections, it may take multiple hearings and amended plans before the court confirms.</p>
<!-- ============================================================ -->
<h2 id="step-6-making-payments">14. Step 6: Making Payments</h2>
<p>Once the plan is confirmed, you make monthly payments to the Chapter 13 trustee for the duration of the plan (3 to 5 years). The trustee then distributes the money to your creditors according to the confirmed plan.</p>
<h3>Payroll deduction</h3>
<p>Many districts encourage or require plan payments through payroll deduction under <a href="https://www.law.cornell.edu/uscode/text/11/1325">Section 1325(c)</a>. Your employer deducts the plan payment directly from your paycheck and sends it to the trustee. This makes it easier to stay on track and avoids the risk of spending money you need for plan payments.</p>
<p>If you are self-employed or payroll deduction is not available, you make payments directly to the trustee -- typically by check, money order, or electronic payment.</p>
<h3>What the trustee does with the money</h3>
<p>The Chapter 13 trustee is not a creditor. The trustee is an independent fiduciary who collects your payments and distributes them to creditors according to the confirmed plan. The trustee also monitors your compliance with the plan and can file motions to dismiss your case if you fall behind on payments.</p>
<p>The trustee's fee is a percentage of the amounts disbursed -- typically 4% to 10% depending on the district. This fee is built into your plan payment, so you do not pay it separately.</p>
<div class="warning-box">
<div class="label">Falling Behind on Payments</div>
<p>If you miss plan payments, the trustee will file a motion to dismiss your case. Dismissal means the automatic stay is lifted, all creditors can resume collection, and you lose the benefits of the plan. If you are struggling to make payments, consider requesting a <a href="#step-7-plan-modification">plan modification</a> before you fall too far behind. Communication with the trustee is critical.</p>
</div>
<h3>Other obligations during the plan</h3>
<p>While your case is pending, you must:</p>
<ul>
<li>Make all plan payments on time</li>
<li>Continue making ongoing mortgage payments directly to the mortgage company (if you are keeping your home)</li>
<li>Continue making vehicle insurance payments</li>
<li>File and pay taxes on time</li>
<li>Stay current on domestic support obligations (child support, alimony)</li>
<li>Not take on new debt without court permission</li>
<li>Report any significant changes in income or expenses to the trustee</li>
</ul>
<!-- ============================================================ -->
<h2 id="step-7-plan-modification">15. Step 7: Plan Modification</h2>
<p>Life changes over 3 to 5 years. Your income may go up or down. You might lose a job, get a raise, have a medical emergency, or face unexpected expenses. <a href="https://www.law.cornell.edu/uscode/text/11/1329">Section 1329</a> allows you to modify your confirmed plan to account for changed circumstances.</p>
<p>A plan modification can be requested by the debtor, the trustee, or an unsecured creditor. Common modifications include:</p>
<ul>
<li><strong>Increasing or decreasing the plan payment</strong> based on changed income or expenses</li>
<li><strong>Extending the plan length</strong> (up to the 5-year maximum) to reduce monthly payments</li>
<li><strong>Changing how creditors are paid</strong> based on new circumstances</li>
<li><strong>Adding new debts</strong> that arose after filing</li>
</ul>
<p>The modified plan must still satisfy all the requirements of Section 1325 -- good faith, best interest of creditors, disposable income, and feasibility. The court will hold a hearing and creditors have the right to object.</p>
<div class="green-box">
<div class="label">Practical Tip</div>
<p>Do not wait until you are months behind on payments to request a modification. If your circumstances change, contact your attorney or the trustee immediately. Courts are far more receptive to proactive modification requests than to attempts to salvage a case that is already in default. A modification is a sign that you are trying to succeed. Ignoring a payment problem is a path to dismissal.</p>
</div>
<!-- ============================================================ -->
<h2 id="step-8-discharge">16. Step 8: Discharge</h2>
<p>If you complete all plan payments and satisfy all requirements, the court enters a discharge order under <a href="https://www.law.cornell.edu/uscode/text/11/1328">Section 1328(a)</a>. The discharge permanently eliminates your legal obligation to pay most remaining debts. Creditors are prohibited from ever collecting on discharged debts by the <a href="section-524-discharge-injunction.html">discharge injunction under Section 524</a>.</p>
<h3>Requirements for discharge</h3>
<p>Before the court will enter a discharge, you must:</p>
<ol>
<li>Complete all plan payments</li>
<li>Complete the post-petition debtor education course</li>
<li>Certify that all domestic support obligations are current</li>
<li>Certify that you have not received a discharge in a prior case within the Section 1328(f) time bars</li>
<li>Not have been convicted of certain felonies or have pending proceedings under Section 522(q)</li>
</ol>
<h3>Section 1328(a) discharge vs. Section 1328(b) hardship discharge</h3>
<p>There are two types of Chapter 13 discharge:</p>
<p><strong>Section 1328(a) -- full compliance discharge.</strong> This is the standard discharge granted when you complete all plan payments. It eliminates all debts provided for by the plan except those specifically excluded by Section 1328(a)(1) through (4) -- primarily domestic support obligations, certain student loans, criminal restitution, and debts for personal injury caused by drunk driving.</p>
<p><strong>Section 1328(b) -- hardship discharge.</strong> If you cannot complete the plan due to circumstances beyond your control (serious illness, disability, job loss), you can request a hardship discharge. This is a narrower discharge -- it applies the same exceptions as Chapter 7 under Section 523(a), which means it does not include the <a href="#super-discharge">super discharge</a> protections. To qualify, you must show that (1) the failure to complete is due to circumstances beyond your control, (2) creditors have received at least as much as they would have in a Chapter 7 liquidation, and (3) modification of the plan is not practicable.</p>
<!-- ============================================================ -->
<h2 id="super-discharge">17. The Chapter 13 Super Discharge</h2>
<p>One of Chapter 13's most valuable features is its broader discharge scope compared to Chapter 7. This is informally known as the "super discharge." Under Section 1328(a), Chapter 13 discharge has fewer exceptions than Chapter 7 discharge under <a href="section-523-nondischargeable-debts.html">Section 523(a)</a>.</p>