クレジットカード返済計算機
固定月額の返済でクレジットカードの残高を返済するのにかかる期間、総利息、総返済額を見積もります。カードを返済中も使い続ける場合の追加料金も含まれます。
入力
オプション。返済中にカードを使い続ける場合、毎月残高に追加される継続的な支出。
出力
| 指標 | 値 |
|---|---|
| No data yet | |
このツールを使う他の方法
REST API
curl -X POST https://api.iotools.cloud/v1/tool/credit-card-payoff-calculator \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"balance": "5000",
"apr": "22.99",
"payment": "200",
"monthlyCharges": "0"
}'ご自身のアカウントのキーに差し替えてください。ツールのフィールドがそのままリクエストボディになります——ラッパーはありません。
AIエージェントに依頼する
Use the IOTools `credit-card-payoff-calculator` tool (Credit Card Payoff Calculator) on this input:
YOUR_INPUT_HEREIOTools MCPサーバーに接続された任意のエージェントにこれを貼り付け、入力内容を追加してください。
埋め込みウィジェット
<iframe
src="https://iotools.cloud/embed/credit-card-payoff-calculator/"
width="100%" height="520" frameborder="0" scrolling="no" loading="lazy"
title="クレジットカード返済計算機 — iotools.cloud"
sandbox="allow-scripts allow-forms allow-same-origin allow-downloads allow-popups allow-popups-to-escape-sandbox"
allow="clipboard-write"
style="width:100%;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden"></iframe>
<script src="https://iotools.cloud/embed.js" async></script>ご自身のページに貼り付けるだけ——無料、キー不要、リンクを掲載するだけです。
| API/MCP 1回あたりの費用 | 5クレジットから |
|---|---|
| クレジットが足りませんか? | 料金を見る |
次の方法でも利用可能
ガイド
What this calculator does
Enter your current credit card balance, its APR and a fixed monthly payment, and this calculator works out how many months it takes to pay off the balance, the total interest you'll pay along the way, and the total amount paid. Unlike a loan calculator that solves for the payment given a fixed term, a credit card runs the other direction — you decide what you can pay each month, and the calculator tells you how long that takes.
It also models the common real-world case of continuing to use the card while paying it down: an optional New Charges Added Each Month field lets you see how ongoing spending stretches out the payoff time and drives up total interest.
How it's calculated
The balance is simulated month by month, since credit card interest compounds on whatever remains after each payment — a plain formula can't capture that once new charges are added on top:
- Interest accrues on the current balance:
interest = balance x (APR / 100 / 12). - Any new charges for the month are added to the balance.
- The fixed monthly payment is applied, reducing the balance (the final payment is trued up to exactly clear the remainder).
- Repeat until the balance reaches $0.
The simulation is capped at 1,200 months (100 years) — if a payment doesn't outpace interest and new charges, the balance would never clear, and the calculator reports that clearly instead of appearing to hang.
How to use this tool
- Enter your Current Balance — what you currently owe on the card.
- Enter the card's Annual Percentage Rate (APR) as a percentage (e.g.
22.99). - Enter the Fixed Monthly Payment you plan to pay every month.
- Optionally, enter New Charges Added Each Month if you'll keep using the card while paying down the balance. Leave it at 0 to model paying it off with no new spending.
The summary table updates instantly with the payoff time, total interest paid and total amount paid.
FAQ
Why does my payoff time seem longer than my bank's estimate? Some issuers estimate payoff using a minimum-payment schedule that shrinks each month as the balance drops. This calculator assumes you pay the same fixed amount every month, which pays off faster and costs less interest than a shrinking minimum payment — check which one your issuer is quoting.
What if my payment doesn't cover the interest? The calculator flags this directly: if your fixed payment is smaller than the interest (and any new charges) accruing each month, the balance would grow instead of shrink, and it would never be paid off. Increase the payment or reduce new spending.
Does this account for a card's minimum-payment percentage rule? No — it models a fixed dollar payment you choose, not a shifting percentage-of-balance minimum. For that, use the Credit Card Minimum Payment Calculator, which also compares a shrinking minimum payment against a fixed one. If you want to see what a fixed extra payment saves on a term loan instead, see the Debt Repayment Calculator.
I know how many months I want to pay it off in, not the payment amount — is there a calculator for that? Yes — the Credit Card Payment Calculator works in the opposite direction: enter your target payoff term and it solves for the fixed monthly payment that clears the balance in exactly that many months.
Privacy
All calculations run entirely in your browser. Nothing you enter — balances, APR or payment amounts — is sent to a server or stored anywhere.