What To Know About Filing For Bankruptcy

4 min read

About one million Americans file for personal bankruptcy each year, with one in 10 households having filed at some point. Given the loss of jobs, reduced income, and the coronavirus recession in 2020, those numbers could increase this year if the economic recovery is not both swift and omnipresent.

There are two main types of personal bankruptcy: Chapter 7 and Chapter 13. Chapter 7, which is the more common option, will liquidate the filer’s assets in order to discharge all or a portion of the outstanding debt. People generally choose this route because they are in way over their heads and do not earn enough income to pay their debts in any type of normal time frame.

Chapter 13, on the other hand, provides some immediate breathing room while helping the filer develop a payment plan based on a reduced percentage of the debt. This percentage is determined by how much he makes and what he can feasibly pay each month. While a Chapter 7 bankruptcy remains on your credit report for 10 years, while Chapter 13 bankruptcy is a bit less punitive staying on record for only seven years. As the filer works to pay down his debt and sticks to his plan, his credit score will gradually improve over time. In some cases, the debtor may be able to apply for an FHA, VA, or USDA home loan a year after his bankruptcy filing, or two to four years if applying for a conventional mortgage.

Bankruptcy can provide immediate relief from creditors calling and threatening to evict, foreclose, repossess, shut off, or garnish wages. However, be prepared for some level of pain, such as the bankruptcy court seizing property to be sold to pay your creditors, and/or your credit cards being canceled.

You may see television ads to get debt relief without having to file bankruptcy. Be aware that while these programs may negotiate a debt settlement to something you can better afford, they will not skirt the wrath of the dreaded credit rating agencies. Any time an entity negotiates a reduction in your debt, this will show up as a negative factor on your credit score, and will likely remain that way for many years. A more recent issue that not everyone is aware of is that some employers have started checking the credit reports of job applicants. This makes it all the more difficult to pay off your debt if you can’t get a job because of your past payment history. Your best option is to secure a reliable income before you work with a debt relief agency or file for bankruptcy.

Before entering any type of debt relief program, it’s a good idea to consult with a qualified, non-profit credit counseling agency for a free debt analysis. Don’t go to just anyone; make sure it is a legitimate resource which, by law, is required to serve your best interest. Shady debt counseling vendors are inclined to recommend a debt solution that works out better for the agency than their clients.

If you do decide to file for bankruptcy, be aware that court fees cost about $300, plus lawyer fees tend to run between $1,000 and $3,000 for a Chapter 7 filing and approximately $3,000 to $6,000 for a Chapter 13 filing.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

"; return; } var url = block.dataset.restUrl + "?post_id=" + encodeURIComponent(block.dataset.postId) + "&keyword=" + encodeURIComponent(keyword); output.innerHTML = "
Searching…
"; submit.disabled = true; output.setAttribute("aria-busy", "true"); fetch(url, { headers: { "X-WP-Nonce": block.dataset.nonce } }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 200 && resp.data && resp.data.success) { dpSimilarRender(output, keyword, resp.data); } else if (resp.status === 403) { output.innerHTML = "
Session expired. Please refresh the page and try again.
"; } else if (resp.status === 429) { output.innerHTML = "
Too many searches. Please try again in a few minutes.
" + dpSimilarCta(output, -1); } else { output.innerHTML = "
Search failed. Please try again.
" + dpSimilarCta(output, -1); } }) .catch(function(){ output.innerHTML = "
Could not reach the server. Please check your connection.
" + dpSimilarCta(output, -1); }) .then(function(){ submit.disabled = false; output.removeAttribute("aria-busy"); }); } function dpAskGrokSend(block) { var input = block.querySelector(".dp-ask-grok-input"); var result = block.querySelector(".dp-ask-grok-result"); var send = block.querySelector(".dp-ask-grok-send"); var form = block.querySelector(".dp-ask-grok-form"); var button = block.querySelector(".dp-ask-grok-button"); var intro = block.querySelector(".dp-ask-grok-intro"); var question = (input.value || "").trim(); if (question.length Please ask a question of at least 10 characters."; return; } if (question.length > 500) { result.innerHTML = "
Question is too long. Please keep it under 500 characters.
"; return; } result.innerHTML = "
Asking Grok\u2026 (this can take 10-20 seconds)
"; send.disabled = true; result.setAttribute("aria-busy", "true"); fetch(block.dataset.restUrlAskGrok, { method: "POST", headers: { "Content-Type": "application/json", "X-WP-Nonce": block.dataset.nonce }, body: JSON.stringify({ post_id: parseInt(block.dataset.postId, 10), question: question }) }) .then(function(r){ return r.json().then(function(data){ return { status: r.status, data: data }; }); }) .then(function(resp){ if (resp.status === 429) { if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } var rateMsg = (resp.data && resp.data.message) ? resp.data.message : "You\u2019ve reached today\u2019s question limit. Please try again tomorrow."; result.innerHTML = "
" + dpSimilarEscape(rateMsg) + "
"; return; } if (resp.status === 403) { result.innerHTML = "
Session expired. Please refresh the page and try again.
"; return; } if (resp.status === 200 && resp.data && resp.data.success) { var safeAnswer = dpSimilarEscape(resp.data.answer || ""); var safeDisclaimer = dpSimilarEscape(resp.data.disclaimer || ""); var answerHtml = "
"; answerHtml += "

" + safeAnswer + "

"; answerHtml += "

\u26a0\ufe0f " + safeDisclaimer + "

"; answerHtml += "
"; result.innerHTML = answerHtml; if (form) form.style.display = "none"; if (intro) intro.style.display = ""; if (button) { button.style.display = ""; button.disabled = true; button.setAttribute("title", "Daily limit reached. Try again tomorrow."); button.textContent = "Daily limit reached"; } return; } if (resp.status === 200 && resp.data && !resp.data.success) { var msg = dpSimilarEscape(resp.data.message || "Could not process your question right now."); result.innerHTML = "
" + msg + "
"; return; } result.innerHTML = "
Could not process your question right now. Please try again later.
"; }) .catch(function(){ result.innerHTML = "
Could not reach the server. Please check your connection and try again.
"; }) .then(function(){ if (send) send.disabled = false; result.removeAttribute("aria-busy"); }); } function dpSimilarRender(output, keyword, data) { var html = ""; if (data.count === 0) { html += "
No matches found for “" + dpSimilarEscape(keyword) + "”.
"; } else { html += "

Articles matching “" + dpSimilarEscape(keyword) + "”

"; html += "
    "; data.results.forEach(function(r){ html += "
  • "; html += "" + r.title + ""; html += "" + r.date + ""; html += "
  • "; }); html += "
"; } html += dpSimilarCta(output, data.count); output.innerHTML = html; } function dpSimilarCta(output, count) { var block = output.closest(".dp-similar-block"); var contactUrl = block ? block.dataset.contactUrl : ""; if (!contactUrl) { return ""; } var ctaText; if (count === -1) { ctaText = "While you wait, here are some other ways to get help:"; } else if (count === 0) { ctaText = "Couldn\u2019t find what you needed? Speak with a professional for personalized help."; } else { ctaText = "Need more help with this topic? Speak with a professional."; } var html = "
"; html += "

" + ctaText + "

"; html += "Talk to a Professional"; html += "
"; var isFullApi = block && block.dataset.isFullApi === "1"; html += "

Or ask our AI assistant a quick question about this topic.

"; html += ""; html += "
"; html += ""; html += ""; html += ""; html += ""; html += "
"; html += "
"; html += "
"; html += "
"; return html; } function dpSimilarEscape(s) { var div = document.createElement("div"); div.textContent = s; return div.innerHTML; }})();

Coronado-Fortune & Associates, LLC

What To Know About Filing For Bankruptcy

January 1, 2021  ·  Blog, Financial Planning, Uncategorized

4 min read

About one million Americans file for personal bankruptcy each year, with one in 10 households having filed at some point. Given the loss of jobs, reduced income, and the coronavirus recession in 2020, those numbers could increase this year if the economic recovery is not both swift and omnipresent.

There are two main types of personal bankruptcy: Chapter 7 and Chapter 13. Chapter 7, which is the more common option, will liquidate the filer’s assets in order to discharge all or a portion of the outstanding debt. People generally choose this route because they are in way over their heads and do not earn enough income to pay their debts in any type of normal time frame.

Chapter 13, on the other hand, provides some immediate breathing room while helping the filer develop a payment plan based on a reduced percentage of the debt. This percentage is determined by how much he makes and what he can feasibly pay each month. While a Chapter 7 bankruptcy remains on your credit report for 10 years, while Chapter 13 bankruptcy is a bit less punitive staying on record for only seven years. As the filer works to pay down his debt and sticks to his plan, his credit score will gradually improve over time. In some cases, the debtor may be able to apply for an FHA, VA, or USDA home loan a year after his bankruptcy filing, or two to four years if applying for a conventional mortgage.

Bankruptcy can provide immediate relief from creditors calling and threatening to evict, foreclose, repossess, shut off, or garnish wages. However, be prepared for some level of pain, such as the bankruptcy court seizing property to be sold to pay your creditors, and/or your credit cards being canceled.

You may see television ads to get debt relief without having to file bankruptcy. Be aware that while these programs may negotiate a debt settlement to something you can better afford, they will not skirt the wrath of the dreaded credit rating agencies. Any time an entity negotiates a reduction in your debt, this will show up as a negative factor on your credit score, and will likely remain that way for many years. A more recent issue that not everyone is aware of is that some employers have started checking the credit reports of job applicants. This makes it all the more difficult to pay off your debt if you can’t get a job because of your past payment history. Your best option is to secure a reliable income before you work with a debt relief agency or file for bankruptcy.

Before entering any type of debt relief program, it’s a good idea to consult with a qualified, non-profit credit counseling agency for a free debt analysis. Don’t go to just anyone; make sure it is a legitimate resource which, by law, is required to serve your best interest. Shady debt counseling vendors are inclined to recommend a debt solution that works out better for the agency than their clients.

If you do decide to file for bankruptcy, be aware that court fees cost about $300, plus lawyer fees tend to run between $1,000 and $3,000 for a Chapter 7 filing and approximately $3,000 to $6,000 for a Chapter 13 filing.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.


Disclaimer 

These articles provide general information on tax, accounting, and financial topics for small businesses and individuals. They are educational in nature and are not specific legal, accounting, financial, tax, or other professional advice, and should not be relied upon as such. This content was prepared by Service2Client and may have been reviewed or edited by the website owner for accuracy and compliance. Look for a trust mark below for verification details. No representation is made that any approach described will achieve a particular result, and no regulatory or professional body has reviewed or endorsed this content. Because each situation is different, readers should consult a qualified professional about their specific circumstances before acting. Images accompanying these articles are protected by copyright and may not be copied or reused.

Service2Client

Share
Published by
Service2Client

Recent Posts

New Trump Account Updates

Picture two couples, each with a baby born this year, each routing $2,500 of salary…

2 weeks ago

Understanding Inflation Accounting

According to the July 12, 2026, Consumer Price Index Release from the U.S. Bureau of…

2 weeks ago

Bond Investment Strategies

Bonds are designed to deliver both capital preservation and income, and are generally considered lower…

2 weeks ago

How to Keep Your Cash When You Make Good Money

You’re doing well, earning a good salary. But somewhere around the latter part of the…

2 weeks ago

Insurance for AI Risk: Is It Time to Consider AI Liability Coverage?

Over the past few years, artificial intelligence (AI) has evolved from a futuristic concept into…

2 weeks ago

Focused on Ending Insider Trading, the Penny, Epilepsy, the War in Iran, and Projects that Waste Taxpayer Money

strong>21st Century ROAD to Housing Act (HR 6644) – This bipartisan, White House-endorsed bill addresses…

2 weeks ago