{"id":768032,"date":"2020-01-15T11:57:50","date_gmt":"2020-01-15T16:57:50","guid":{"rendered":"https:\/\/www.finder.com\/ca\/?p=768032"},"modified":"2026-06-25T12:28:09","modified_gmt":"2026-06-25T16:28:09","slug":"car-loan-monthly-payment-calculator","status":"publish","type":"post","link":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator","title":{"rendered":"Car Loan Calculator"},"content":{"rendered":"<meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Auto Loan Payment Calculator<\/title>\n    <style>\n        :root {\n            --primary-color: #1D53FF;\n            --primary-hover: #113ecc;\n            --text-color: #333333;\n            --bg-light: #f9f9f9;\n            --border-color: #cccccc;\n            --white: #ffffff;\n        }\n\n        .phone-calculator-container {\n            font-family: \"Modern Era\", sans-serif;\n            max-width: 650px;\n            margin: 20px auto;\n            background: var(--white);\n            border: 1px solid var(--border-color);\n            border-radius: 8px;\n            padding: 25px;\n            box-shadow: 0 4px 12px rgba(0,0,0,0.05);\n            color: var(--text-color);\n        }\n\n        .phone-calculator-container h2 {\n            margin-top: 0;\n            color: var(--text-color);\n            font-size: 24px;\n            border-bottom: 2px solid var(--bg-light);\n            padding-bottom: 10px;\n        }\n\n        .calc-grid {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 15px;\n            margin-bottom: 20px;\n        }\n\n        @media (max-width: 480px) {\n            .calc-grid {\n                grid-template-columns: 1fr;\n            }\n        }\n\n        .input-group {\n            display: flex;\n            flex-direction: column;\n        }\n\n        .input-group.full-width {\n            grid-column: span 2;\n        }\n\n        .input-group label {\n            font-size: 14px;\n            font-weight: 600;\n            margin-bottom: 5px;\n        }\n\n        .input-wrapper {\n            position: relative;\n            display: flex;\n            align-items: center;\n        }\n\n        .input-prefix, .input-suffix {\n            position: absolute;\n            font-size: 16px;\n            color: #666;\n        }\n        \n        .input-prefix { left: 12px; }\n        .input-suffix { right: 12px; }\n\n        .input-wrapper input {\n            width: 100%;\n            padding: 10px 12px;\n            font-size: 16px;\n            border: 1px solid var(--border-color);\n            border-radius: 4px;\n            box-sizing: border-box;\n            font-family: \"Modern Era\", sans-serif;\n        }\n\n        .has-prefix input { padding-left: 28px; }\n        .has-suffix input { padding-right: 32px; }\n\n        .range-wrapper {\n            display: flex;\n            align-items: center;\n            gap: 15px;\n        }\n\n        .range-wrapper input[type=\"range\"] {\n            flex: 1;\n            accent-color: var(--primary-color);\n        }\n\n        .range-value {\n            font-weight: bold;\n            font-size: 16px;\n            width: 50px;\n            text-align: right;\n        }\n\n        .summary-box {\n            background-color: var(--bg-light);\n            border-left: 4px solid var(--primary-color);\n            padding: 15px;\n            margin-bottom: 25px;\n            border-radius: 0 4px 4px 0;\n        }\n\n        .summary-box h3 {\n            margin: 0 0 5px 0;\n            font-size: 14px;\n            text-transform: uppercase;\n            letter-spacing: 0.5px;\n            color: #666;\n        }\n\n        .summary-box .amount {\n            font-size: 28px;\n            font-weight: bold;\n            color: var(--text-color);\n        }\n\n        .results-table {\n            width: 100%;\n            border-collapse: collapse;\n            margin-top: 15px;\n        }\n\n        .results-table th, .results-table td {\n            padding: 12px;\n            text-align: left;\n            border-bottom: 1px solid var(--border-color);\n        }\n\n        .results-table th {\n            background-color: var(--bg-light);\n            font-weight: 600;\n            font-size: 14px;\n        }\n\n        .results-table td { font-size: 15px; }\n        .results-table tr:last-child td { border-bottom: none; }\n        .highlight-payment { font-weight: bold; color: var(--primary-color); }\n        \n        .disclaimer {\n            font-size: 11px;\n            color: #777;\n            margin-top: 25px;\n            line-height: 1.4;\n        }\n    <\/style>\n\n\n\n<div class=\"phone-calculator-container\">\n    <h2>Auto Loan Payment Calculator<\/h2>\n    \n    <div class=\"calc-grid\">\n        <div class=\"input-group\">\n            <label for=\"vehiclePrice\">Vehicle Price<\/label>\n            <div class=\"input-wrapper has-prefix\">\n                <span class=\"input-prefix\">$<\/span>\n                <input type=\"number\" id=\"vehiclePrice\" value=\"25000\" min=\"0\" step=\"100\">\n            <\/div>\n        <\/div>\n\n        <div class=\"input-group\">\n            <label for=\"tradeIn\">Trade-In Value<\/label>\n            <div class=\"input-wrapper has-prefix\">\n                <span class=\"input-prefix\">$<\/span>\n                <input type=\"number\" id=\"tradeIn\" value=\"0\" min=\"0\" step=\"100\">\n            <\/div>\n        <\/div>\n\n        <div class=\"input-group\">\n            <label for=\"existingLoan\">Existing Vehicle Loan Balance<\/label>\n            <div class=\"input-wrapper has-prefix\">\n                <span class=\"input-prefix\">$<\/span>\n                <input type=\"number\" id=\"existingLoan\" value=\"0\" min=\"0\" step=\"100\">\n            <\/div>\n        <\/div>\n\n        <div class=\"input-group\">\n            <label for=\"downPayment\">Down Payment<\/label>\n            <div class=\"input-wrapper has-prefix\">\n                <span class=\"input-prefix\">$<\/span>\n                <input type=\"number\" id=\"downPayment\" value=\"2000\" min=\"0\" step=\"100\">\n            <\/div>\n        <\/div>\n\n        <div class=\"input-group\">\n            <label for=\"taxRate\">Sales Tax<\/label>\n            <div class=\"input-wrapper has-suffix\">\n                <input type=\"number\" id=\"taxRate\" value=\"13\" min=\"0\" max=\"30\" step=\"0.1\">\n                <span class=\"input-suffix\">%<\/span>\n            <\/div>\n        <\/div>\n\n        <div class=\"input-group\">\n            <label for=\"interestRate\">Expected Interest Rate<\/label>\n            <div class=\"input-wrapper has-suffix\">\n                <input type=\"number\" id=\"interestRate\" value=\"5.99\" min=\"0\" max=\"25\" step=\"0.01\">\n                <span class=\"input-suffix\">%<\/span>\n            <\/div>\n        <\/div>\n\n        <div class=\"input-group full-width\">\n            <label for=\"loanTerm\">Duration of Loan (Months)<\/label>\n            <div class=\"range-wrapper\">\n                <input type=\"range\" id=\"loanTerm\" min=\"12\" max=\"96\" step=\"12\" value=\"60\">\n                <span class=\"range-value\" id=\"termValue\">60<\/span>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div class=\"summary-box\">\n        <h3>Total Amount Financed<\/h3>\n        <div class=\"amount\" id=\"totalFinanced\">$0.00<\/div>\n    <\/div>\n\n    <h3>Estimated Payments<\/h3>\n    <table class=\"results-table\">\n        <thead>\n            <tr>\n                <th>Payment Frequency<\/th>\n                <th>Payment Amount<\/th>\n                <th>Total Interest Paid<\/th>\n            <\/tr>\n        <\/thead>\n        <tbody>\n            <tr data-frequency=\"12\">\n                <td>Monthly<\/td>\n                <td class=\"highlight-payment payment-cell\">$0.00<\/td>\n                <td class=\"interest-cell\">$0.00<\/td>\n            <\/tr>\n            <tr data-frequency=\"26\">\n                <td>Bi-weekly<\/td>\n                <td class=\"highlight-payment payment-cell\">$0.00<\/td>\n                <td class=\"interest-cell\">$0.00<\/td>\n            <\/tr>\n            <tr data-frequency=\"52\">\n                <td>Weekly<\/td>\n                <td class=\"highlight-payment payment-cell\">$0.00<\/td>\n                <td class=\"interest-cell\">$0.00<\/td>\n            <\/tr>\n        <\/tbody>\n    <\/table>\n\n    <div class=\"disclaimer\">\n        * Calculation results are approximations and for informational purposes only. \n    <\/div>\n<\/div>\n\n<script>\n    document.addEventListener(\"DOMContentLoaded\", function() {\n        \/\/ Cache DOM selectors efficiently\n        const els = {\n            price: document.getElementById(\"vehiclePrice\"),\n            trade: document.getElementById(\"tradeIn\"),\n            lien: document.getElementById(\"existingLoan\"),\n            down: document.getElementById(\"downPayment\"),\n            tax: document.getElementById(\"taxRate\"),\n            rate: document.getElementById(\"interestRate\"),\n            term: document.getElementById(\"loanTerm\"),\n            termLabel: document.getElementById(\"termValue\"),\n            totalFinanced: document.getElementById(\"totalFinanced\"),\n            rows: document.querySelectorAll(\".results-table tbody tr\")\n        };\n\n        const formatter = new Intl.NumberFormat('en-CA', { style: 'currency', currency: 'CAD' });\n\n        \/\/ Combined listeners\n        [els.price, els.trade, els.lien, els.down, els.tax, els.rate].forEach(input => \n            input.addEventListener(\"input\", calculateLoan)\n        );\n        \n        els.term.addEventListener(\"input\", function() {\n            els.termLabel.textContent = this.value;\n            calculateLoan();\n        });\n\n        function calculateFrequency(principal, annualRate, totalMonths, periodsPerYear) {\n            const totalPayments = (totalMonths \/ 12) * periodsPerYear;\n            \n            \/\/ Standard Simple Compounding used for typical Auto Loans:\n            const periodicRate = annualRate \/ periodsPerYear; \n\n            \/\/ NOTE: If you need strict legal Canadian Mortgage\/Loan standard compounding, uncomment below:\n            \/\/ const periodicRate = Math.pow(1 + annualRate \/ 2, 2 \/ periodsPerYear) - 1;\n\n            if (principal <= 0) return { payment: 0, interest: 0 };\n            if (periodicRate === 0) return { payment: principal \/ totalPayments, interest: 0 };\n\n            const compoundFactor = Math.pow(1 + periodicRate, totalPayments);\n            const payment = principal * (periodicRate * compoundFactor) \/ (compoundFactor - 1);\n            const totalInterest = (payment * totalPayments) - principal;\n\n            return { payment, interest: Math.max(0, totalInterest) };\n        }\n\n        function calculateLoan() {\n            const price = parseFloat(els.price.value) || 0;\n            const trade = parseFloat(els.trade.value) || 0;\n            const lien = parseFloat(els.lien.value) || 0;\n            const down = parseFloat(els.down.value) || 0;\n            const tax = (parseFloat(els.tax.value) || 0) \/ 100;\n            const annualRate = (parseFloat(els.rate.value) || 0) \/ 100;\n            const months = parseInt(els.term.value) || 60;\n\n            const netPrice = Math.max(0, price - trade);\n            const totalFinanced = Math.max(0, (netPrice * (1 + tax)) + lien - down);\n\n            els.totalFinanced.textContent = formatter.format(totalFinanced);\n\n            \/\/ Loop through rows dynamically instead of copy-pasting code for each frequency\n            els.rows.forEach(row => {\n                const freq = parseInt(row.getAttribute(\"data-frequency\"));\n                const res = calculateFrequency(totalFinanced, annualRate, months, freq);\n                \n                row.querySelector(\".payment-cell\").textContent = formatter.format(res.payment);\n                row.querySelector(\".interest-cell\").textContent = formatter.format(res.interest);\n            });\n        }\n\n        calculateLoan(); \/\/ Init\n    });\n<\/script>\n\n\n\n    \n\n<style>\n#toppicks, #toppicks-mobile { overflow-x: auto; }\n.table-expander__content { margin-left: 0.5rem; line-height: normal; }\n.pro-section { line-height: 1.35rem; text-align: left; }\n\n.topPicksF1 .card-topText {\n    font-weight: 800;\n    height: 50px;\n    font-style: italic;\n    align-content: space-around;\n}\n\n.topPicksF1 .zoom:hover {\n    box-shadow: 4px 6px 0 0 #232320;\n}\n\n.topPicksF1 .topPicks__deal {\n    color: #232021;\n    background-color: #F7F6EC;\n}\n\n.container-threepc.threepc-flex::-webkit-scrollbar { display: none; }\n.gx-badge__body.awards-badge__body.hasPopover.threepc-award { margin-top: 0; }\n.topPicks__card-card figure.award { padding: 0px 10px 20px 10px; margin: -3px auto 3px; width: 130px; }\n.topPicks__card-card figure.noward { padding: 10px; width: 130px; }\n.award-wrapper { height: 0px; display: block; margin: -23px auto 23px; }\n\n.threepc-rewards-pill-wrapper { display: flex; justify-content: center; margin: 0 0.7rem; }\n.threepc-rewards-pill-wrapper .rewards-pill-wrapper { margin: 0; display: flex; justify-content: center; }\n.rewards--container figure.noward, .rewards--container figure.award { padding-bottom: 0; }\n.container-threepc:has(.rewards-pill) .luna-button--success { margin-top: 8px; }\n.container-threepc:has(.rewards-pill) .has-padding-top-small { padding-top: 14px; }\n.award-bnt { padding-top: 0.5em; padding-bottom: 0.5em; }\n.award-pad { padding-top: 0.5rem; margin-bottom: 0.55rem; }\n.luna-card__block { padding: 1.25rem; }\n.ratings-w { width: 42%; margin: auto; margin-bottom: 1rem; }\n.cleanMastHead { display: block; }\n.standardMasthead.standardMasthead--widget { overflow: visible; }\n.standardMasthead__widgetSection__content { overflow: visible; }\n.popover.fade.bottom.in { overflow: visible; }\n\n.cardColoured-banner {\n    width: 100%;\n    border-radius: 0.7em 0.7em 0 0;\n    background-color: #e5f7ff;\n}\n\n.cardPros-text {\n    font-size: 0.8em;\n}\n\n.cardData-header {\n    margin: 0;\n    font-size: 0.77em;\n    white-space: normal;\n    color: #6c7881;\n}\n\n.cardProductname-header {\n    font-size: 0.77em;\n    white-space: normal;\n    color: #6c7881;\n    font-weight: 600;\n    margin-bottom: 0.5rem;\n    margin-top: 0.5rem;\n}\n\n.cardProductname-header-fsa {\n    margin-top: 2rem;\n    margin-bottom: 0.7rem;\n}\n\n.cardData-text {\n    margin: 0;\n    font-size: 0.9em;\n    font-weight: 700;\n    text-align: right;\n    white-space: normal;\n}\n\n.card-topText {\n    text-align: center;\n    margin: 0.5em;\n    font-weight: 500;\n    white-space: normal;\n}\n\n.container-threepc .luna-card {\n    overflow: visible;\n}\n\n.popover.top {\n    overflow: visible;\n}\n\n.pick {\n    margin-top: 0.3em;\n    margin-bottom: 0.3em;\n}\n\n.luna-card__topPick {\n   padding: 0.5em;\n}\n\n.best-pagePromoted-span {\n    font-size: 0.7em;\n    font-weight: 700;\n    background-color: #f6c744;\n    border-radius: 1em;\n    padding: 0.4em 0.8em;\n}\n\n.container-threepc {\n    width: 100%;\n    height: auto;\n    white-space: nowrap;\n    padding-top: 10px;\n    padding-bottom: 10px;\n}\n\n\/* Dual product-set visibility. When only one set is rendered it has no\n   visibility class and shows everywhere (current behaviour). When a mobile\n   set is supplied, the desktop set shows >801px and the mobile set <=801px. *\/\n.container-threepc.threepc-desktop-only { display: flex; }\n.container-threepc.threepc-mobile-only { display: none; }\n@media (max-width: 801px) {\n    .container-threepc.threepc-desktop-only { display: none; }\n    .container-threepc.threepc-mobile-only { display: flex; }\n}\n\n.threepc-flex {\n    display: flex;\n    flex-wrap: unset;\n        overflow: visible;\n    }\n\n.threepc-flex-item {\n    flex: 0 0 auto;\n}\n\n.zoom {\n    transition: transform .2s;\n    margin: 0 auto;\n}\n\n.zoom:hover {\n    transform: scale(1.015);\n    box-shadow: 1px 1px 19px -9px rgba(168,176,183,0.81);\n}\n\n.mastheadPick-item {\n    margin: 5px;\n    width: calc(96% \/ 3);\n    border-radius: 0.7em;\n}\n\n.luna-author {\n    padding: 20px;\n}\n\n.standardMasthead__widgetSection {\n    margin-bottom: 8%;\n}\n\n.topPicks__deal {\n    color: #014BB2;\n    font-weight: 600;\n    background-color: #ebf3fc;\n    padding: 0.5em 0.65em 0.6em;\n    width: auto;\n    border-radius: 16px;\n    font-size: 0.875rem;\n    line-height: 17px;\n    margin: 1.2rem 0.7rem;\n    text-wrap: wrap;\n}\n\n.topPicks__deal span.table-popover::before {\n    background-image: url(\"data:image\/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20id%3D%22info-circle%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11%2017h2v-6h-2v6zm1-15C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm0%2018.75c-4.823%200-8.75-3.927-8.75-8.75S7.177%203.25%2012%203.25s8.75%203.927%208.75%208.75-3.927%208.75-8.75%208.75zM11%209h2V7h-2v2z%22%20fill%3D%22%23232021%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E\");\n    margin: -2px 0px -1px 0px;\n}\n\n@media (max-width: 1920px) {\n    .pro-section {\n        max-height: fit-content;\n    }\n}\n\n@media (max-width:801px) {\n    .topPicksF1 .card-topText {\n        font-size: 1.3em;\n    }\n\n    .mastheadPick-item {\n        margin: 5px;\n        width: 80%;\n    }\n\n    .standardMasthead__widgetSection {\n        margin-bottom: 0;\n    }\n\n    .standardMasthead.standardMasthead--widget {\n        overflow: auto;\n    }\n\n    .container-threepc .popover.fade.bottom.in {\n        overflow: visible;\n        left: 2rem;\n        top: 0;\n    }\n}\n\n@media (max-width:481px) {\n    .topPicksF1 .cardColoured-banner {\n        font-size: 0.8rem;\n        background-color: #e5f7ff;\n    }\n\n    .award-w-btn { padding-top: 0.25rem }\n    .ratings-w { width: 52%; }\n    .award-wrapper { height: 0px; display: block; }\n    .cardProductname-header { margin-top: 2.2rem; }\n\n    .mastheadPick-item {\n        margin: 5px;\n        width: 80%;\n    }\n\n    .standardMasthead__widgetSection {\n        margin-bottom: 0;\n    }\n\n    .cardColoured-banner {\n        font-size: 0.9rem;\n        background-color: #e5f7ff;\n    }\n}\n<\/style>\n\n<style>\n       .icondeal > use { fill: #232320 !important }\n    .icondeal { width: 1rem !important; height: 1rem !important; vertical-align: \/*middle;*\/ vertical-align: bottom !important;}\n  .best-page-offer-text-rib {  border-radius: 16px !important;  background-color: #F7F6EC; padding: 0.5rem; display: inline-block;}\n  .threepc-page-offer-text-rib { padding: 0.3em !important }\n  td.comparison-table__feature--longtext div.comparison-table__cellWrapper { width:  100%; } td.comparison-table__feature--longtext .has-margin-bottom-xsmall { border-radius: 3px; }\n<\/style> \n\n    \n\n\n                        \n\n\n\n\n\n\n\n    \n            \n                \n        <div class=\"container-threepc threepc-flex topPicksF1 \" id=\"toppicks\">\n\n                                                                                                                                                                                                                            <article class=\"luna-card luna-card--shadow luna-card--stretch mastheadPick-item threepc-flex-item zoom topPicks__card-card\">\n                <div class=\"cardColoured-banner\" style=\"background-color: \" data-nbid=\"5ba47813-dec4-4734-8778-bfa4edb45aab\">\n\n                                        \n                    <p class=\"card-topText\" style=\"height:fit-content\">\n                                                    Quick Pre-Approval\n                                            <\/p>\n                <\/div>\n\n                                \n                <div class=\"luna-card__block luna-card__topPick\">\n                    <figure style=\"margin: auto;\" class=\"noward\">\n                        <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.finder.com\/redirect\/ca\/car-loans\/carsfast-lendingarch-ca-car-loan-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22nb-product%22%2C%22product_id%22%3A%225ba47813-dec4-4734-8778-bfa4edb45aab%22%2C%22product_name%22%3A%22CarsFast%2BCar%2BLoans%22%2C%22offer_id%22%3A%2216112%22%2C%22decorator%22%3A%22GLOBAL.PRODUCT.USFIN_IMAGE%22%2C%22niche_code%22%3A%22CAFCL%22%2C%22position%22%3A%221%22%2C%22top_picks_lock_order%22%3A%220%22%2C%22post_id%22%3A%22768032%22%2C%22post_path%22%3A%22car-loans%252Fcar-loan-monthly-payment-calculator%22%2C%22post_country%22%3A%22ca%22%2C%22partial%22%3A%7B%22id%22%3A1730639%2C%22name%22%3A%22threepc%22%2C%22country%22%3A%22us%22%7D%7D\" style=\"margin-bottom: 10px;\" title=\"Go to CarsFast\">\r\n\r\n  \r\n  \r\n\r\n<img decoding=\"async\" src=\"https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png\" loading=\"lazy\" alt=\"CarsFast logo\" class=\"luna-image compare-logo no-lazyload \" width=\"450\" height=\"250\" srcset=\"https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=1200 1200w, https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=1350 1350w\" sizes=\"(max-width: 1350px) 100vw, 1350px\">\r\n<\/a>\n                    <\/figure>\n\n                    \n                    \n                    \n                                            <span class=\"best-pagePromoted-span\" style=\"display: none; background-color: #FFF;\"><\/span>\n                    \n                    \n                    \n                    <div>\n                    <div class=\" has-padding-bottom-xsmall has-padding-top-small\" style=\"border-radius: 0.2em;\">\n                       <a target=\"_blank\" rel=\"sponsored\" href=\"https:\/\/www.finder.com\/redirect\/ca\/car-loans\/carsfast-lendingarch-ca-car-loan-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22product_link%22%2C%22class%22%3A%22luna-button%2Bluna-button--fluid%2Bluna-button--success%22%2C%22title%22%3A%22GO%2BTO%2BSITE%22%2C%22site%22%3A%22CAFCL%22%2C%22offer_id%22%3A%2216112%22%2C%22niche_code%22%3A%22CAFCL%22%2C%22product_id%22%3A%225ba47813-dec4-4734-8778-bfa4edb45aab%22%2C%22product_name%22%3A%22CarsFast%2BCar%2BLoans%22%2C%22provider_id%22%3A%22de539f0b-5b87-4abf-aa61-e7e3b8329b58%22%2C%22provider_name%22%3A%22CarsFast%22%2C%22post_id%22%3A%22768032%22%2C%22post_path%22%3A%22car-loans%252Fcar-loan-monthly-payment-calculator%22%2C%22post_country%22%3A%22ca%22%2C%22partial%22%3A%7B%22id%22%3A1730639%2C%22name%22%3A%22threepc%22%2C%22country%22%3A%22us%22%7D%7D\" class=\"luna-button luna-button--fluid luna-button--success\">GO TO SITE<\/a>\n\n\n                        \n                    <\/div>\n                    <\/div>\n                    \n                    \n\n                       <div style=\"display: none\">5ba47813-dec4-4734-8778-bfa4edb45aab-<\/div>\n\n\n                    \n\n\n\n\n\n                                            <div class=\"cardPros-text  pros-no-blue-lozenge \">\n                            <style>\r\n.list-1 li {\r\noverflow-wrap: break-word;\r\nwhite-space: normal;\r\npadding-bottom: 10px;\r\n}\r\n  \r\n.pro-engine { \r\nmin-height: 100px;\r\nmargin-top: 15px;\r\n}\r\n  \r\n@media (max-width:1001px) { \r\n.pro-section{\r\n\r\n\r\n}\r\n}\r\n  \r\n@media (max-width:1920px) { \r\n.pro-section{\r\n\r\n\r\n}\r\n}\r\n  \r\n.pro-section-2 {\r\n\r\n}\r\n<\/style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<div class=\"pro-section\">\r\n    <ul class=\"list-1 pros-a\" id=\"pros\">\r\n        \r\n            \r\n                 <li>Rates from 3.90% - 29.90%<span class=\"table-popover\" rel=\"popover\" data-content=\"Interest rates shown reflect the Annual Percentage Rate (APR) range currently advertised by the lender and are subject to change anytime, without notice. Finder does not guarantee that the figures shown will continue to be accurate or current. Figures shown are solely intended to be indicative and for general informational purposes only. Confirm the actual rates currently offered with the lender directly. Your exact rate, if any is offered to you, will be determined solely by the lender based on its assessment of your loan application, which is subject to the lender\u2019s terms and conditions and credit criteria.\" title=\"\" data-original-title=\"\"><\/span><\/li>\r\n            \r\n         \r\n            \r\n                 <li>Borrow $500 - $75,000<\/li>\r\n            \r\n         \r\n            \r\n                 <li>Loan terms from 12 - 96 months<\/li>\r\n            \r\n         \r\n            \r\n                 <li>Get matched with offers<\/li>\r\n            \r\n         \r\n    <\/ul>\r\n<\/div>\n                        <\/div>\n                                    <\/div>\n\n                <div style=\"margin-top: 1rem; margin-right: 0.7rem;\">\n                    \n                <\/div>\n            <\/article>\n                                                                                                                                                                                                                            <article class=\"luna-card luna-card--shadow luna-card--stretch mastheadPick-item threepc-flex-item zoom topPicks__card-card\">\n                <div class=\"cardColoured-banner\" style=\"background-color: \" data-nbid=\"98559dd6-c17b-40fb-a619-3014d270fc9d\">\n\n                                        \n                    <p class=\"card-topText\" style=\"height:fit-content\">\n                                                    0% Financing\n                                            <\/p>\n                <\/div>\n\n                                \n                <div class=\"luna-card__block luna-card__topPick\">\n                    <figure style=\"margin: auto;\" class=\"noward\">\n                        <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.finder.com\/redirect\/ca\/car-loans\/loans-canada-car-loan-ca-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22nb-product%22%2C%22product_id%22%3A%2298559dd6-c17b-40fb-a619-3014d270fc9d%22%2C%22product_name%22%3A%22Loans%2BCanada%2BCar%2BLoans%22%2C%22offer_id%22%3A%2217709%22%2C%22decorator%22%3A%22GLOBAL.PRODUCT.USFIN_IMAGE%22%2C%22niche_code%22%3A%22CAFCL%22%2C%22position%22%3A%222%22%2C%22top_picks_lock_order%22%3A%220%22%2C%22post_id%22%3A%22768032%22%2C%22post_path%22%3A%22car-loans%252Fcar-loan-monthly-payment-calculator%22%2C%22post_country%22%3A%22ca%22%2C%22partial%22%3A%7B%22id%22%3A1730639%2C%22name%22%3A%22threepc%22%2C%22country%22%3A%22us%22%7D%7D\" style=\"margin-bottom: 10px;\" title=\"Go to Loans Canada\">\r\n\r\n  \r\n  \r\n\r\n<img decoding=\"async\" src=\"https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png\" loading=\"lazy\" alt=\"Loans Canada logo\" class=\"luna-image compare-logo no-lazyload \" width=\"450\" height=\"250\" srcset=\"https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=1200 1200w, https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=1350 1350w\" sizes=\"(max-width: 1350px) 100vw, 1350px\">\r\n<\/a>\n                    <\/figure>\n\n                    \n                    \n                    \n                                            <span class=\"best-pagePromoted-span\" style=\"display: none; background-color: #FFF;\"><\/span>\n                    \n                    \n                    \n                    <div>\n                    <div class=\" has-padding-bottom-xsmall has-padding-top-small\" style=\"border-radius: 0.2em;\">\n                       <a target=\"_blank\" rel=\"sponsored\" href=\"https:\/\/www.finder.com\/redirect\/ca\/car-loans\/loans-canada-car-loan-ca-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22product_link%22%2C%22class%22%3A%22luna-button%2Bluna-button--fluid%2Bluna-button--success%22%2C%22title%22%3A%22GO%2BTO%2BSITE%22%2C%22site%22%3A%22CAFCL%22%2C%22offer_id%22%3A%2217709%22%2C%22niche_code%22%3A%22CAFCL%22%2C%22product_id%22%3A%2298559dd6-c17b-40fb-a619-3014d270fc9d%22%2C%22product_name%22%3A%22Loans%2BCanada%2BCar%2BLoans%22%2C%22provider_id%22%3A%2212ee2ade-e1e9-43f0-b34b-760e916e902f%22%2C%22provider_name%22%3A%22Loans%2BCanada%22%2C%22post_id%22%3A%22768032%22%2C%22post_path%22%3A%22car-loans%252Fcar-loan-monthly-payment-calculator%22%2C%22post_country%22%3A%22ca%22%2C%22partial%22%3A%7B%22id%22%3A1730639%2C%22name%22%3A%22threepc%22%2C%22country%22%3A%22us%22%7D%7D\" class=\"luna-button luna-button--fluid luna-button--success\">GO TO SITE<\/a>\n\n\n                        \n                    <\/div>\n                    <\/div>\n                    \n                    \n\n                       <div style=\"display: none\">98559dd6-c17b-40fb-a619-3014d270fc9d-<\/div>\n\n\n                    \n\n\n\n\n\n                                            <div class=\"cardPros-text  pros-no-blue-lozenge \">\n                            <style>\r\n.list-1 li {\r\noverflow-wrap: break-word;\r\nwhite-space: normal;\r\npadding-bottom: 10px;\r\n}\r\n  \r\n.pro-engine { \r\nmin-height: 100px;\r\nmargin-top: 15px;\r\n}\r\n  \r\n@media (max-width:1001px) { \r\n.pro-section{\r\n\r\n\r\n}\r\n}\r\n  \r\n@media (max-width:1920px) { \r\n.pro-section{\r\n\r\n\r\n}\r\n}\r\n  \r\n.pro-section-2 {\r\n\r\n}\r\n<\/style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<div class=\"pro-section\">\r\n    <ul class=\"list-1 pros-a\" id=\"pros\">\r\n        \r\n            \r\n                 <li>Rates from 0% - 35.00%<span class=\"table-popover\" rel=\"popover\" data-content=\"0% financing is for new cars only. Interest rates shown reflect the Annual Percentage Rate (APR) range currently advertised by the lender and are subject to change anytime, without notice. Finder does not guarantee that the figures shown will continue to be accurate or current. Figures shown are solely intended to be indicative and for general informational purposes only. Confirm the actual rates currently offered with the lender directly. Your exact rate, if any is offered to you, will be determined solely by the lender based on its assessment of your loan application, which is subject to the lender\u2019s terms and conditions and credit criteria.\" title=\"\" data-original-title=\"\"><\/span><\/li>\r\n            \r\n         \r\n            \r\n                 <li>Borrow $3,000 - $50,000<\/li>\r\n            \r\n         \r\n            \r\n                 <li>Loan terms from 3-60 months<\/li>\r\n            \r\n         \r\n            \r\n                 <li>Get matched with offers<\/li>\r\n            \r\n         \r\n    <\/ul>\r\n<\/div>\n                        <\/div>\n                                    <\/div>\n\n                <div style=\"margin-top: 1rem; margin-right: 0.7rem;\">\n                    \n                <\/div>\n            <\/article>\n                                                                                                                                                                                                                            <article class=\"luna-card luna-card--shadow luna-card--stretch mastheadPick-item threepc-flex-item zoom topPicks__card-card\">\n                <div class=\"cardColoured-banner\" style=\"background-color: \" data-nbid=\"de1c9023-15d0-4348-91ea-3fc9fa05ca59\">\n\n                                        \n                    <p class=\"card-topText\" style=\"height:fit-content\">\n                                                    Used Cars\n                                            <\/p>\n                <\/div>\n\n                                \n                <div class=\"luna-card__block luna-card__topPick\">\n                    <figure style=\"margin: auto;\" class=\"noward\">\n                        <a rel=\"nofollow\" target=\"_blank\" href=\"https:\/\/www.finder.com\/redirect\/ca\/car-loans\/clutch-car-financing-ca-car-loans-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22nb-product%22%2C%22product_id%22%3A%22de1c9023-15d0-4348-91ea-3fc9fa05ca59%22%2C%22product_name%22%3A%22Clutch%2BCar%2BLoans%22%2C%22offer_id%22%3A%2221758%22%2C%22decorator%22%3A%22GLOBAL.PRODUCT.USFIN_IMAGE%22%2C%22niche_code%22%3A%22CAFCL%22%2C%22position%22%3A%223%22%2C%22top_picks_lock_order%22%3A%220%22%2C%22post_id%22%3A%22768032%22%2C%22post_path%22%3A%22car-loans%252Fcar-loan-monthly-payment-calculator%22%2C%22post_country%22%3A%22ca%22%2C%22partial%22%3A%7B%22id%22%3A1730639%2C%22name%22%3A%22threepc%22%2C%22country%22%3A%22us%22%7D%7D\" style=\"margin-bottom: 10px;\" title=\"Go to Clutch\">\r\n\r\n  \r\n  \r\n\r\n<img decoding=\"async\" src=\"https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png\" loading=\"lazy\" alt=\"Clutch logo\" class=\"luna-image compare-logo no-lazyload \" width=\"450\" height=\"250\" srcset=\"https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=1200 1200w, https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=1350 1350w\" sizes=\"(max-width: 1350px) 100vw, 1350px\">\r\n<\/a>\n                    <\/figure>\n\n                    \n                    \n                    \n                                            <span class=\"best-pagePromoted-span\" style=\"display: none; background-color: #FFF;\"><\/span>\n                    \n                    \n                    \n                    <div>\n                    <div class=\" has-padding-bottom-xsmall has-padding-top-small\" style=\"border-radius: 0.2em;\">\n                       <a target=\"_blank\" rel=\"sponsored\" href=\"https:\/\/www.finder.com\/redirect\/ca\/car-loans\/clutch-car-financing-ca-car-loans-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22product_link%22%2C%22class%22%3A%22luna-button%2Bluna-button--fluid%2Bluna-button--success%22%2C%22title%22%3A%22GO%2BTO%2BSITE%22%2C%22site%22%3A%22CAFCL%22%2C%22offer_id%22%3A%2221758%22%2C%22niche_code%22%3A%22CAFCL%22%2C%22product_id%22%3A%22de1c9023-15d0-4348-91ea-3fc9fa05ca59%22%2C%22product_name%22%3A%22Clutch%2BCar%2BLoans%22%2C%22provider_id%22%3A%2264f3760a-9630-4758-a75f-5f8b97ee3ef1%22%2C%22provider_name%22%3A%22Clutch%22%2C%22post_id%22%3A%22768032%22%2C%22post_path%22%3A%22car-loans%252Fcar-loan-monthly-payment-calculator%22%2C%22post_country%22%3A%22ca%22%2C%22partial%22%3A%7B%22id%22%3A1730639%2C%22name%22%3A%22threepc%22%2C%22country%22%3A%22us%22%7D%7D\" class=\"luna-button luna-button--fluid luna-button--success\">GO TO SITE<\/a>\n\n\n                        \n                    <\/div>\n                    <\/div>\n                    \n                    \n\n                       <div style=\"display: none\">de1c9023-15d0-4348-91ea-3fc9fa05ca59-<\/div>\n\n\n                    \n\n\n\n\n\n                                            <div class=\"cardPros-text  pros-no-blue-lozenge \">\n                            <style>\r\n.list-1 li {\r\noverflow-wrap: break-word;\r\nwhite-space: normal;\r\npadding-bottom: 10px;\r\n}\r\n  \r\n.pro-engine { \r\nmin-height: 100px;\r\nmargin-top: 15px;\r\n}\r\n  \r\n@media (max-width:1001px) { \r\n.pro-section{\r\n\r\n\r\n}\r\n}\r\n  \r\n@media (max-width:1920px) { \r\n.pro-section{\r\n\r\n\r\n}\r\n}\r\n  \r\n.pro-section-2 {\r\n\r\n}\r\n<\/style>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<div class=\"pro-section\">\r\n    <ul class=\"list-1 pros-a\" id=\"pros\">\r\n        \r\n            \r\n                 <li>Rates from 7.99%<span class=\"table-popover\" rel=\"popover\" data-content=\"Interest rates displayed are expressed as Annual Percentage Rates (APR). Interest rates are provided by lenders and brokers and are not guaranteed or enforced by Finder. Interest rates will vary depending on the applicants location, credit history, debt level and other circumstances.\" title=\"\" data-original-title=\"More info\"><\/span><\/li>\r\n            \r\n         \r\n            \r\n                 <li>Borrow from $7,500<\/li>\r\n            \r\n         \r\n            \r\n                 <li>Ontario online dealer<\/li>\r\n            \r\n         \r\n            \r\n                 <li>Competitive vehicle prices<\/li>\r\n            \r\n         \r\n    <\/ul>\r\n<\/div>\n                        <\/div>\n                                    <\/div>\n\n                <div style=\"margin-top: 1rem; margin-right: 0.7rem;\">\n                    \n                <\/div>\n            <\/article>\n            <\/div>\n    \n    \n<h3>I calculated my car loan\u2019s monthly payment. What\u2019s next?<\/h3><p>It depends on why you used this calculator. If you wanted to know your car loan\u2019s monthly payment based on an offer from a lender, you might want to pre-qualify with a few more <a href=\"https:\/\/www.finder.com\/ca\/car-loans\">car loan lenders<\/a> to find out if you can get a better deal.<\/p><p>If you\u2019re trying to figure out how much you can afford to borrow, use the loan amount, term and interest rate as a guide for finding a car and a corresponding loan that you can afford. Some lenders require that you have a car picked out before you apply. Even if they don\u2019t, it doesn\u2019t hurt to visit a few dealerships to compare your options.<\/p><p>After you\u2019ve found a car that you like, research lenders that are willing to finance the particular car you\u2019re interested in buying \u2014 some have restrictions on models, makes and mileage if you\u2019re getting a used car. You can get started by <a class=\"scroll\" href=\"#car-loans-comparison\">using our comparison table<\/a>. Once you\u2019ve found a lender you like, follow their specific directions for applying for an auto loan.<\/p><h3>Other costs to keep in mind<\/h3><ul class=\"list-7\"><li><strong>Down payment.<\/strong> Typically, car loans come with a <a href=\"https:\/\/www.finder.com\/ca\/car-loans\/buying-a-car\/how-much-should-my-car-down-payment-be\" target=\"_blank\" rel=\"noopener noreferrer\">down payment of around 20%<\/a> of the vehicle\u2019s value.<\/li><li><strong>Taxes.<\/strong> Make sure you\u2019re including the sales tax (PST\/GST\/HST) in your loan amount when calculating the monthly repayments.<\/li><li><strong>Insurance premiums.<\/strong> On top of car loan payments, you\u2019ll have to pay for insurance. Your insurance payment will be determined based on where you live, your gender, your age, what type of car you drive, your driving history and other factors. In Canada, auto insurance fees usually cost between $700 \u2013 $3,000 per year. Ontario generally has the most expensive auto insurance due to the number of accidents that occur there. Drivers under the age of 25 will be charged a higher rate in any province. <\/li><\/ul><h3 id=\"car-loans-comparison\">Compare car loans<\/h3><div class=\"content tableWithFilters\n        \n        \n         -table-container\" id=\"comparison-table\" data-section=\"table\">\n    <div class=\"tableWithFilters__tableTop\">\n            <\/div>\n            <div class=\"contentWrapper tableWithFilters__contentWrapper \">\n        <div class=\"tableWithFilters__sidebarFilter tableWithFilters__sidebarFilter--stickyAndScrollable\" data-niche-short-code=\"CAFCL\">\n        <div class=\"tableWithFilters__filter f1\"><\/div>\n    <\/div>\n        <div class=\"tableWithFilters__table content\">\n        <script type=\"text\/javascript\">\nvar getEventToListenTo = () => {\n  if (window.matchMedia('(any-hover:none)').matches) {\n    if (window.matchMedia('(max-width: 450px)').matches) {\n      return \"scroll\";\n    }\n  }\n  return \"DOMContentLoaded\";\n};\nvar eventToWatch = getEventToListenTo();\nconst loadFinderScoreModalcafcl = () => {\n  setTimeout(function(){\n   window.loadOnTheFly.html(\n      'partial', {\n          id: 'finder-score-cafcl-modal-optimized',\n      },\n      function (response) {\n          document.getElementsByTagName(\"body\")[0].appendChild(response);\n          var modal = document.getElementById('finderScoreModal-cafcl');\n          var closeButton = modal.querySelector(\"#closeButton\");\n          closeButton.onclick = function (event) {\n            modal.classList.add(\"elementHidden\");\n          };\n          var btnReadMethodology = modal.querySelector(\"#btnReadMethodology\");\n          btnReadMethodology.addEventListener(\"click\", function(e) {\n            modal.classList.add(\"elementHidden\");\n          });\n          window.onclick = function (event) {\n            if (event.target == modal) {\n              modal.classList.add(\"elementHidden\");\n            }\n          };\n      }\n  );\n  },1000);\n  window.removeEventListener(eventToWatch, loadFinderScoreModalcafcl);\n};\nwindow.addEventListener(eventToWatch, loadFinderScoreModalcafcl);\nvar showFinderScoreModal = (niche) => {\n  var existCondition = setInterval(function() {\n    const modalLoaded = document.getElementById('finderScoreModal-cafcl');\n    if (modalLoaded) {\n      clearInterval(existCondition);\n      modalLoaded.classList.remove('elementHidden');\n    }\n  }, 500); \/\/ check every 0.5s\n}\n<\/script><div class=\"customTableFiltersConfig tableFiltersConfig__main\" style=\"display: none\">{\"userFilters\":[{\"componentType\":\"MULTI-SELECT CHECKBOX\",\"options\":{\"comparator\":\"contains\",\"includeAllSelection\":false,\"defaultMatcher\":\"ANY\",\"values\":[\"8.95-10\",\"6.95-8.94999\",\"4.95-6.94999\",\"0-4.94999\"],\"fields\":[{\"label\":\"[[FINDER_SCORE_BADGE|9+]] Excellent: 9+\",\"value\":\"8.95-10\",\"comparator\":\"range\"},{\"label\":\"[[FINDER_SCORE_BADGE|7+]] Great: 7+\",\"value\":\"6.95-8.94999\",\"comparator\":\"range\"},{\"label\":\"[[FINDER_SCORE_BADGE|5+]] Standard: 5+\",\"value\":\"4.95-6.94999\",\"comparator\":\"range\"},{\"label\":\"[[FINDER_SCORE_BADGE|0+]] Basic: 0+\",\"value\":\"0-4.94999\",\"comparator\":\"range\"}]},\"dataSelector\":{\"recordType\":\"PRODUCT\",\"fieldCode\":\"FINDER_SCORE.FINDER_SCORE\"},\"dataType\":\"NUMBER\",\"label\":\"Finder Score\",\"queryParameter\":\"finderScore\"},{\"config\":{\"MULTISELECT\":true,\"VALUES\":\"Less than 3 months, 3+ months\"},\"dataSelector\":{\"recordType\":\"product\",\"fieldCode\":\"DETAILS.EMPLOYMENT_FILTER\"},\"dataType\":\"TEXT\",\"label\":\"Employed for\",\"order\":1},{\"config\":{\"MULTISELECT\":true,\"VALUES\":\"Less than $1500 per month, $1500-$1800 per month, $1800+ per month\"},\"dataSelector\":{\"recordType\":\"product\",\"fieldCode\":\"DETAILS.MONTHLY_INCOME_FILTER\"},\"dataType\":\"TEXT\",\"label\":\"Monthly Income\",\"order\":2},{\"config\":{\"MULTISELECT\":true,\"VALUES\":\"Less than 600, 600-650, 650+\"},\"dataSelector\":{\"recordType\":\"product\",\"fieldCode\":\"DETAILS.CREDIT_SCORE_FILTER\"},\"dataType\":\"TEXT\",\"label\":\"Credit Score\",\"order\":3},{\"config\":{},\"dataSelector\":{\"recordType\":\"product\",\"fieldCode\":\"DETAILS.SAME_DAY_LOAN\"},\"dataType\":\"BOOLEAN\",\"label\":\"Same Day Loan\",\"order\":4},{\"dataSelector\":{\"recordType\":\"UI_FILTER_COMPONENT\",\"fieldCode\":\"SPECIAL_OFFERS\"},\"dataType\":\"BOOLEAN\",\"label\":\"Special offers\",\"componentType\":\"SpecialOffersFilter\",\"config\":{\"VALUES\":\"1\",\"fields\":[{\"value\":\"exclusive_only\",\"label\":\"Finder Rewards &amp; exclusives\"},{\"value\":\"all_offers_no_rewards\",\"label\":\"All offers\"}]},\"options\":{\"comparator\":\"eq\"},\"queryParameter\":\"special-offers\"},{\"config\":{},\"dataSelector\":{\"recordType\":\"product\",\"fieldCode\":\"GENERAL.PROVIDER_ID\"},\"dataType\":\"UUID\",\"label\":\"Lender\",\"order\":5}],\"niche\":{\"currencySymbol\":\"$\",\"decimalPoint\":\".\",\"decimalPlaces\":\"2\",\"thousandsSeparator\":\",\",\"filterBoundsMap\":{\"product.DETAILS.EMPLOYMENT_FILTER\":null,\"product.DETAILS.MONTHLY_INCOME_FILTER\":null,\"product.DETAILS.CREDIT_SCORE_FILTER\":null,\"product.DETAILS.SAME_DAY_LOAN\":null,\"product.GENERAL.PROVIDER_ID\":null}},\"prefilled\":false,\"experimental\":false}<\/div><script type=\"application\/json\" class=\"comparison-platform-schema\" style=\"display: none\">{&quot;page&quot;:&quot;\/ca\/wp-json\/wp\/v2\/posts\/768032&quot;,&quot;niche&quot;:&quot;CAFCL&quot;,&quot;filters&quot;:[{&quot;id&quot;:&quot;finderScore&quot;,&quot;label&quot;:&quot;Finder Score&quot;,&quot;type&quot;:&quot;multi-select&quot;,&quot;queryParam&quot;:&quot;finderScore&quot;,&quot;options&quot;:[{&quot;value&quot;:&quot;8.95-10&quot;,&quot;label&quot;:&quot;[[FINDER_SCORE_BADGE|9+]] Excellent: 9+&quot;},{&quot;value&quot;:&quot;6.95-8.94999&quot;,&quot;label&quot;:&quot;[[FINDER_SCORE_BADGE|7+]] Great: 7+&quot;},{&quot;value&quot;:&quot;4.95-6.94999&quot;,&quot;label&quot;:&quot;[[FINDER_SCORE_BADGE|5+]] Standard: 5+&quot;},{&quot;value&quot;:&quot;0-4.94999&quot;,&quot;label&quot;:&quot;[[FINDER_SCORE_BADGE|0+]] Basic: 0+&quot;}],&quot;urlExample&quot;:&quot;?finderScore=8.95-10,6.95-8.94999&quot;},{&quot;id&quot;:&quot;details-same-day-loan&quot;,&quot;label&quot;:&quot;Same Day Loan&quot;,&quot;type&quot;:&quot;boolean&quot;,&quot;queryParam&quot;:&quot;details-same-day-loan&quot;,&quot;default&quot;:null,&quot;urlExample&quot;:&quot;?details-same-day-loan=true&quot;},{&quot;id&quot;:&quot;special-offers&quot;,&quot;label&quot;:&quot;Special offers&quot;,&quot;type&quot;:&quot;special-offers&quot;,&quot;queryParam&quot;:&quot;special-offers&quot;,&quot;options&quot;:[{&quot;value&quot;:&quot;exclusive_only&quot;,&quot;label&quot;:&quot;Finder Rewards &amp; exclusives&quot;},{&quot;value&quot;:&quot;all_offers_no_rewards&quot;,&quot;label&quot;:&quot;All offers&quot;}],&quot;urlExample&quot;:&quot;?special-offers=exclusive_only&quot;},{&quot;id&quot;:&quot;general-provider-id&quot;,&quot;label&quot;:&quot;Lender&quot;,&quot;type&quot;:&quot;provider&quot;,&quot;queryParam&quot;:&quot;general-provider-id&quot;,&quot;urlExample&quot;:&quot;?general-provider-id=&lt;uuid&gt;,&lt;uuid&gt;&quot;}],&quot;sorts&quot;:[{&quot;field&quot;:&quot;CAFCL.PRODUCT.DATAPOINT_CAFCL_FINDER_SCORE&quot;,&quot;label&quot;:&quot;Finder Score&quot;,&quot;directions&quot;:[&quot;ASCENDING&quot;,&quot;DESCENDING&quot;],&quot;urlExample&quot;:&quot;?sort=CAFCL.PRODUCT.DATAPOINT_CAFCL_FINDER_SCORE ASCENDING&quot;},{&quot;field&quot;:&quot;CAFCL.PRODUCT.DATAPOINT_CAFCL_APR_LARGE&quot;,&quot;label&quot;:&quot;APR Range&quot;,&quot;directions&quot;:[&quot;ASCENDING&quot;,&quot;DESCENDING&quot;],&quot;urlExample&quot;:&quot;?sort=CAFCL.PRODUCT.DATAPOINT_CAFCL_APR_LARGE ASCENDING&quot;},{&quot;field&quot;:&quot;CAFCL.PRODUCT.DATAPOINT_CAFCL_LOAN_AMOUNT_RANGE_LARGE&quot;,&quot;label&quot;:&quot;Loan Amount&quot;,&quot;directions&quot;:[&quot;ASCENDING&quot;,&quot;DESCENDING&quot;],&quot;urlExample&quot;:&quot;?sort=CAFCL.PRODUCT.DATAPOINT_CAFCL_LOAN_AMOUNT_RANGE_LARGE ASCENDING&quot;},{&quot;field&quot;:&quot;CAFCL.PRODUCT.DATAPOINT_CAFCL_LOAN_TERM_LARGE&quot;,&quot;label&quot;:&quot;Loan Term&quot;,&quot;directions&quot;:[&quot;ASCENDING&quot;,&quot;DESCENDING&quot;],&quot;urlExample&quot;:&quot;?sort=CAFCL.PRODUCT.DATAPOINT_CAFCL_LOAN_TERM_LARGE ASCENDING&quot;},{&quot;field&quot;:&quot;PRODUCT.GENERAL.BROKER_COMPLIANCE&quot;,&quot;label&quot;:&quot;Broker Compliance&quot;,&quot;directions&quot;:[&quot;ASCENDING&quot;,&quot;DESCENDING&quot;],&quot;urlExample&quot;:&quot;?sort=PRODUCT.GENERAL.BROKER_COMPLIANCE ASCENDING&quot;}]}<\/script><div class=\"js-comparison-calculator comparison-calculator comparison-calculator--paginationNav f1   \" data-category=\"21cbe458-e531-49a6-890a-00abe8f961e3\" data-template=\"comparison\" data-niche=\"CAFCL\" data-site=\"CAFCL\" data-auto-recalculate=\"true\" data-post-country=\"ca\" data-fieldset=\"cafcl-generic\" data-compare-fieldset=\"compareInfobox\" data-post-id=\"768032\" data-mobile-template=\"\" data-origin=\"straightforward-niche\" data-side-filters=\"false\" data-sort=\"\" data-enable-top-filters=\"false\" data-mobile-data-layout=\"grid\" data-redirect-tracking-params='{\"placement_type\":\"table\",\"site\":\"CAFCL\",\"fieldset\":\"cafcl-generic\",\"template\":\"comparison\",\"category_id\":\"21cbe458-e531-49a6-890a-00abe8f961e3\",\"category_name\":\"Car Loan Interest Rates Page\",\"is_sorted\":0,\"is_filtered\":0,\"cta_render_ts\":1782440034}' data-disable-alternative-products=\"true\" data-force-enable-alternative-products=\"false\" data-niche-default-category=\"\" data-niche-default-path=\"\" data-experiment-flags=\"\"><section class=\"comparison-calculator--container\"><div class=\"comparison-actions\"><div class=\"comparison-actions__filterAndSort\"><div id=\"portal-table-sort-button-mobile\" class=\"comparison-actions__tablesort\"><\/div><div id=\"portal-table-filter-button-mobile\" class=\"comparison-actions__filter\"><\/div><\/div><div id=\"portal-tableWithFilters__table\"><\/div><div class=\"u-grid u-grid--gutterCollapse templateTable__dateAndCounterContainer\"><div class=\"u-grid__col \"><small class=\"templateTable__counterContainer\"><span id=\"js-current_product_count-21cbe458-e531-49a6-890a-00abe8f961e3\">5 of 15 results<\/span><\/small><\/div><\/div><div class=\"comparison-actions__filterAndSort--sticky\"><div id=\"portal-table-sort-button-mobile-sticky\" class=\"comparison-actions__tablesort\"><\/div><div id=\"portal-table-filter-button-mobile-sticky\" class=\"comparison-actions__filter\"><\/div><\/div><\/div><form action=\"\" name=\"compareForm\" method=\"post\" class=\"js-compare-bar\" data-compareinfobox=\"\" data-compare-fieldset=\"compareInfobox\" data-niche=\"CAFCL\" data-site=\"CAFCL\" data-table-id=\"1266\" data-origin=\"straightforward-niche\" data-record-type=\"product\" data-redirect-tracking-params='{\"placement_type\":\"table\",\"site\":\"CAFCL\",\"fieldset\":\"cafcl-generic\",\"template\":\"comparison\",\"category_id\":\"21cbe458-e531-49a6-890a-00abe8f961e3\",\"category_name\":\"Car Loan Interest Rates Page\",\"is_sorted\":0,\"is_filtered\":0,\"cta_render_ts\":1782440034}'><div class=\"comparisonHistory__root\"><\/div><table class=\"comparison-table f1-clarity-header has-sidepeek js-paginated-table-sorter paginated-table-sorter    has-combined-column-header  combined-column-header-grid js-calculator-table rewards--container loyalty-rewards--container\" id=\"comparison-table-0000000000\" data-has-sidepeek=\"true\" data-rendered-as=\"table\" data-loadmore=\"true\" data-loadmore-version=\"1\" data-loadmore-id=\"1009\" data-niche=\"cafcl\" data-sorted=\"false\" data-sorting=\"\" data-pagination-nav=\"5\" data-pagination-nav-offset=\"0\" data-pagination-nav-next-offset=\"5\" data-pagination-nav-prev-offset=\"0\" data-product-count=\"15\" data-manual-sponsored-count=\"\" data-include-inactive=\"false\" data-user-filters data-table-filter-presets=\"5ffb79f10f28044681ed1e12c55b875b1282ac8ba46b3b7f9c3d8dbfa754b326\" data-table-record-type=\"product\" data-table-record-ids='[\"5ba47813-dec4-4734-8778-bfa4edb45aab\",\"443c52a6-96bc-495d-82c8-bfb5be873298\",\"98559dd6-c17b-40fb-a619-3014d270fc9d\",\"0d4f0bff-282c-4e96-8dc1-fe9451d43cdb\",\"de1c9023-15d0-4348-91ea-3fc9fa05ca59\"]' data-total-data=\"5\" data-enable-top-filters=\"false\" data-total-product-count=\"15\" data-sponsored-placements=\"3\" data-sponsored-field-code=\"DERIVED.AD_RANK\" data-sponsored-max-per-provider=\"1\" data-override-table-position-configuration=\"false\"><thead class=\"u-bg--background-secondary u-color--foreground-main\"><tr class=\"grid-column-count-4\"><th data-mobile=\"hide\" data-ajax-table-sorter-column=\"CAFCL.PRODUCT.DATAPOINT_CAFCL_FINDER_SCORE\" class=\"comparison-table__feature default-sort-descending tablesorter-header tablesorter-headerUnSorted comparison-table__sortable th-combined-column-header\" data-field-targetable=\"\" data-sorter-title=\"finder_score\" data-ajax-table-sorter-default-direction=\"DESCENDING\"><span class=\"comparison-table__nameTooltip\" rel=\"popover\" data-tooltip-type=\"Finder Score\" data-content=\"The Finder Score is designed to make it easier to compare loans.\">\n                    Finder Score\n                    <svg class=\"luna-icon\"><use xlink:href=\"#info\"><\/use><\/svg><\/span><svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><th data-ajax-table-sorter-column=\"CAFCL.PRODUCT.DATAPOINT_CAFCL_APR_LARGE\" class=\"comparison-table__feature  tablesorter-header tablesorter-headerUnSorted comparison-table__sortable \" data-field-targetable=\"\" data-sorter-title=\"apr_range\">\n                                                        APR Range\n                                                      <svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><th data-ajax-table-sorter-column=\"CAFCL.PRODUCT.DATAPOINT_CAFCL_LOAN_AMOUNT_RANGE_LARGE\" class=\"comparison-table__feature  tablesorter-header tablesorter-headerUnSorted comparison-table__sortable \" data-field-targetable=\"\" data-sorter-title=\"loan_amount\">\n                                                        Loan Amount\n                                                      <svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><th data-ajax-table-sorter-column=\"CAFCL.PRODUCT.DATAPOINT_CAFCL_LOAN_TERM_LARGE\" class=\"comparison-table__feature  tablesorter-header tablesorter-headerUnSorted comparison-table__sortable \" data-field-targetable=\"\" data-sorter-title=\"loan_term\">\n                                                        Loan Term\n                                                      <svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><th class=\"comparison-table__feature comparison-table__feature--longtext no-margin-bottom no-padding-bottom sorter-false  \" data-field-targetable=\"\" data-sorter-title=\"requirements\">\n                                                        Requirements\n                                                      <svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><th data-ajax-table-sorter-column=\"PRODUCT.GENERAL.BROKER_COMPLIANCE\" class=\"comparison-table__feature comparison-table__feature--longtext margin-bottom padding-bottom no-padding-top tablesorter-header tablesorter-headerUnSorted comparison-table__sortable \" data-field-targetable=\"\" data-sorter-title=\"broker_compliance\">\n                                                        Broker Compliance\n                                                      <svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><\/tr><\/thead><tbody><style>\n\t.rewards-infobox .deals-banner { display:flex; flex-direction: row; border-radius: 16px; border:1px solid #000; overflow: hidden; }\n\t.rewards-infobox .deals-left { background:linear-gradient(103.63deg, #FFD23B 9.47%, #FFD835 16.17%, #FEDA3D 21.75%, #FEE053 29.57%, #FEEA77 39.61%, #FDF7A9 50.78%, #FDFFC4 56.36%, #FDF8AC 58.59%, #FDEE88 61.94%, #FEE669 65.29%, #FEE052 68.64%, #FEDB41 73.1%, #FED838 77.57%, #FFD835 83.15%, #FFD23B 89.85%); display:flex; flex-direction: column; align-items:center; justify-content:space-between; position: relative; width: 110px; cursor:pointer; }\n\t@media (min-width: 768px) { .rewards-infobox .deals-left { width: 110px; } }\n\t.rewards-infobox .deals-right { background:#1a50ff; color:#fff; padding: 8px; display:flex; flex-direction: column; gap:2px; justify-content:center; flex: 1; }\n\t@media (min-width: 768px) { .rewards-infobox .deals-right { padding: 8px; } }\n\t.rewards-infobox .deals-phone { position: absolute; top: 8px; left: 12px; }\n\t.rewards-infobox .deals-ends { color:#000; font-weight:800; font-size:12px; line-height:12px; padding:6px 10px; font-style: italic; border-radius: 9999px; display:inline-flex; align-items:center; text-transform: uppercase; display: none; }\n\t.rewards-infobox .deals-ends-text { padding-top: 2px; }\n\t.rewards-infobox .deals-header { display:flex; align-items:center; flex-wrap: nowrap; gap:4px; cursor:pointer; }\n\t.rewards-infobox .deals-amount { background:linear-gradient(103.63deg, #FFD23B 9.47%, #FFD835 16.17%, #FEDA3D 21.75%, #FEE053 29.57%, #FEEA77 39.61%, #FDF7A9 50.78%, #FDFFC4 56.36%, #FDF8AC 58.59%, #FDEE88 61.94%, #FEE669 65.29%, #FEE052 68.64%, #FEDB41 73.1%, #FED838 77.57%, #FFD835 83.15%, #FFD23B 89.85%); color:#232320; font-size:32px; line-height:28px; letter-spacing: -0.75px; text-transform: uppercase; padding: 2px 4px 0 2px; border-radius: 4px; font-style: italic; font-weight: bold; font-size: 30px; }\n\t.rewards-infobox .deals-title { color: white; text-transform: uppercase; font-style:italic; font-weight:bold; font-size:16px; flex: 1; }\n\t.rewards-infobox .deals-list { display:flex; flex-direction: column; flex-wrap: wrap; gap:2px; margin: 4px 0 2px; cursor:pointer; }\n\t@media (min-width: 768px) { .rewards-infobox .deals-list { flex-direction: row; row-gap: 4px; column-gap: 20px; } }\n\t.rewards-infobox .deals-step { display:flex; align-items: baseline; gap:4px; }\n\t.rewards-infobox .deals-step-num { background:#FFD23B; color:#000; display:inline-flex; align-items:center; justify-content:center; font-weight:bold; font-style: italic; border-radius:2px; font-size:12px; margin-top:2px; line-height: 12px; padding-top: 2px; min-width: 11px; }\n\t.rewards-infobox .deals-step-text { color:#fff; font-size:12px; line-height:16px; font-weight: bold; }\n\t.rewards-infobox .deals-disclaimer { color:#E8EEFF; font-size:12px; margin-top: 4px; width: fit-content; }\n\t.rewards-infobox .deals-disclaimer a { color:#BFD0FF; text-decoration: underline; font-size: 12px; }\n\t.rewards-infobox .rewards-end-date { font-size: 12px; }\n\t\n\t\t.rewards-infobox .deals-countdown {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tmargin-top: 8px;\n\t\tflex-wrap: wrap;\n\t}\n\n\t.rewards-infobox .deals-countdown__label {\n\t\tcolor: #fff;\n\t\tfont-size: 12px;\n\t\tfont-weight: 800;\n\t\tpadding-right: 6px;\n\t\twhite-space: nowrap;\n\t}\n\n\t.rewards-infobox .deals-countdown__timer {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tgap: 4px;\n\t}\n\n\t.rewards-infobox .deals-countdown__unit {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t}\n\n\t.rewards-infobox .deals-countdown__value {\n\t\tbackground: #FFD238;\n\t\tcolor: #000;\n\t\tfont-size: 12px;\n\t\tfont-weight: 800;\n\t\ttext-align: center;\n\t\tfont-style: italic;\n\t\tmin-width: 24px;\n\t\tmin-height: 14px;\n\t\tline-height: 100%;\n\t\tletter-spacing: -0.025em;\n\t\tfont-feature-settings: 'tnum' on, 'lnum' on;\n\t\tpadding: 2px;\n\t}\n\n\t.rewards-infobox .deals-countdown__separator {\n\t\tcolor: #fff;\n\t\tfont-size: 16px;\n\t\tfont-weight: 600;\n\t}\n\n\t@media (max-width: 600px) {\n\t\t.rewards-infobox .deals-countdown__value {\n\t\t\tpadding: 2px;\n\t\t}\n\t}\n\n\t\ttd.comparison-table__feature--longtext div.comparison-table__cellWrapper { width: 100%; }\n\n\t\t@media (max-width: 600px) {\n\t\t.reward-col-order-3 { grid-row: 3 !important; }\n\t\t.reward-col-order-4 { grid-row: 4 !important; }\n\t\t.reward-col-order-5 { grid-row: 5 !important; }\n\t\t.reward-col-order-6 { grid-row: 6 !important; }\n\t\t.reward-col-order-7 { grid-row: 7 !important; }\n\t\t.reward-col-order-8 { grid-row: 8 !important; }\n\t\t.reward-col-order-neg-3 { grid-row: -3 !important; }\n\t\t.reward-col-order-neg-4 { grid-row: -4 !important; }\n\t\t.reward-col-order-neg-5 { grid-row: -5 !important; }\n\t\t.reward-col-order-neg-6 { grid-row: -6 !important; }\n\t\t.reward-col-order-neg-7 { grid-row: -7 !important; }\n\t\t.reward-col-order-neg-8 { grid-row: -8 !important; }\n\t}\n<\/style><style>\n  \/* Gold gradient on minimal UX reward rows (desktop only) *\/\n  @media (min-width: 601px) {\n    tr[data-minimal-ux=\"true\"][data-should-show-rewards=\"true\"] {\n      background: linear-gradient(45deg, rgba(255, 210, 59, 0) 76%, rgba(255, 210, 59, 0.5) 100%), #fff;\n      background-repeat: no-repeat;\n      background-size: 50% 50%;\n      background-position: top right;\n    }\n  }\n\n  tr[data-minimal-ux=\"true\"][data-should-show-rewards=\"true\"] > td.comparison-table__cta {\n    gap: 4px;\n    margin-top: 0 !important;\n  }\n\n  \/* Pill wrapper centered in CTA cell (td is display:grid with 3 columns) *\/\n  .rewards-pill-wrapper {\n    z-index: 3;\n    align-self: flex-end;\n    justify-self: flex-end;\n\n    @media (max-width: 600px) {\n      grid-column: 1 \/ -1;\n      text-align: center;\n      justify-self: center;\n    }\n  }\n\n  \/* &#9472;&#9472; Base pill styles (original compact design) &#9472;&#9472; *\/\n  .rewards-pill {\n    display: inline-flex;\n    align-items: center;\n    gap: 6px;\n    background: linear-gradient(103.63deg, #FFD23B 9.47%, #FFD835 16.17%, #FEDA3D 21.75%, #FEE053 29.57%, #FEEA77 39.61%, #FDF7A9 50.78%, #FDFFC4 56.36%, #FDF8AC 58.59%, #FDEE88 61.94%, #FEE669 65.29%, #FEE052 68.64%, #FEDB41 73.1%, #FED838 77.57%, #FFD835 83.15%, #FFD23B 89.85%);\n    border: 1px solid #E6B40F;\n    border-radius: 4px 20px 20px 20px;\n    padding: 0px 8px 0px 2px;\n    cursor: pointer;\n    position: relative;\n    overflow: visible;\n    transition: filter 0.15s ease;\n    height: 24px;\n    box-sizing: border-box;\n\n    @media (max-width: 600px) {\n      box-shadow: 0 0 24px 0 rgba(255, 210, 59, 0.75);\n    }\n  }\n\n  .rewards-pill__shimmer {\n    position: absolute;\n    top: 0;\n    left: 0;\n    right: 0;\n    width: 100%;\n    height: 100%;\n    border-radius: 4px 20px 20px 20px;\n    overflow: hidden;\n    pointer-events: none;\n  }\n\n  .rewards-pill__shimmer::after {\n    content: '';\n    position: absolute;\n    top: 0;\n    width: 50%;\n    height: 100%;\n    background: linear-gradient(\n      90deg,\n      transparent 0%,\n      rgba(255, 255, 255, 0.5) 50%,\n      transparent 100%\n    );\n    animation: rewards-pill-shimmer 4s infinite;\n  }\n\n  .rewards-pill__icon {\n    z-index: 2;\n    display: flex;\n    align-items: center;\n    flex-shrink: 0;\n    position: relative;\n  }\n\n  .rewards-pill__icon-svg {\n    width: 44px;\n    height: 27.75px;\n    overflow: visible;\n  }\n\n  .rewards-pill__star {\n    position: absolute;\n    z-index: 4;\n    opacity: 0;\n    pointer-events: none;\n    width: 22px;\n    height: 22px;\n    top: 55%;\n    left: 3%;\n    margin-top: -19px;\n    margin-left: -6px;\n    animation: rewards-pill-star-rotate 4s infinite;\n  }\n\n  .rewards-pill__text {\n    font-size: 16px;\n    font-style: italic;\n    font-weight: 900;\n    text-transform: uppercase;\n    letter-spacing: 0px;\n    color: #092673;\n    z-index: 1;\n    line-height: 24px;\n    white-space: nowrap;\n  }\n\n  \/* &#9472;&#9472; New design overrides (data-show-tc=\"true\") &#9472;&#9472; *\/\n  .rewards-pill[data-show-tc=\"true\"] {\n    padding: 0px 10px 0px 4px;\n    border-radius: 4px 32px 32px 32px;\n    height: 38px;\n    align-items: center;\n  }\n\n  .rewards-pill[data-show-tc=\"true\"] .rewards-pill__shimmer {\n    border-radius: 4px 32px 32px 32px;\n  }\n\n  .rewards-pill[data-show-tc=\"true\"] .rewards-pill__icon-svg--large {\n    width: 68px;\n    height: 48px;\n  }\n\n  .rewards-pill[data-show-tc=\"true\"] .rewards-pill__star {\n    top: 0;\n    left: 0;\n    margin-top: 0;\n    margin-left: 0;\n  }\n\n  .rewards-pill[data-show-tc=\"true\"] .rewards-pill__text {\n    font-family: 'Modern Era', Arial, Helvetica, sans-serif;\n    font-weight: 900;\n    font-style: italic;\n    font-size: 16px;\n    line-height: 18px;\n    letter-spacing: 0;\n    text-align: center;\n    font-variant-numeric: lining-nums tabular-nums;\n    color: #092673;\n    white-space: nowrap;\n    text-transform: none;\n  }\n\n  .rewards-pill__content {\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    z-index: 1;\n    height: 100%;\n    padding: 2px 0;\n    box-sizing: border-box;\n  }\n\n  .rewards-pill__tc {\n    font-family: 'Modern Era', Arial, Helvetica, sans-serif;\n    font-weight: 400;\n    font-style: normal;\n    font-size: 10px;\n    line-height: 130%;\n    letter-spacing: 0;\n    text-align: left;\n    font-variant-numeric: lining-nums tabular-nums;\n    text-decoration: underline;\n    text-decoration-style: solid;\n    color: #092673;\n    white-space: nowrap;\n  }\n\n  .rewards-pill__tc:hover {\n    opacity: 0.8;\n  }\n\n  \/* &#9472;&#9472; Responsive T&C: inline (inside pill) vs below (outside pill) &#9472;&#9472; *\/\n  .rewards-pill__tc--below {\n    display: none;\n  }\n\n  .rewards-pill__icon-svg--compact {\n    display: none;\n  }\n\n  @media (max-width: 960px) {\n    .rewards-pill__tc--inline {\n      display: none;\n    }\n\n    .rewards-pill__tc--below {\n      display: block;\n      \/* Extra spacing so the T&Cs touch target isn't too close to the CTA button (mobile\/tablet) *\/\n      margin-bottom: 12px;\n    }\n\n    \/* Swap to compact icon on mobile\/tablet *\/\n    .rewards-pill[data-show-tc=\"true\"] .rewards-pill__icon-svg--large {\n      display: none;\n    }\n\n    .rewards-pill[data-show-tc=\"true\"] .rewards-pill__icon-svg--compact {\n      display: block;\n    }\n\n    \/* Revert pill to compact size when T&C moves outside *\/\n    .rewards-pill[data-show-tc=\"true\"] {\n      height: 24px;\n      padding: 0px 8px 0px 2px;\n      border-radius: 4px 20px 20px 20px;\n    }\n\n    .rewards-pill[data-show-tc=\"true\"] .rewards-pill__shimmer {\n      border-radius: 4px 20px 20px 20px;\n    }\n\n    .rewards-pill[data-show-tc=\"true\"] .rewards-pill__star {\n      top: 55%;\n      left: 3%;\n      margin-top: -19px;\n      margin-left: -6px;\n    }\n\n    .rewards-pill[data-show-tc=\"true\"] .rewards-pill__text {\n      text-transform: uppercase;\n      font-size: 16px;\n      line-height: 24px;\n    }\n  }\n\n  @keyframes rewards-pill-shimmer {\n    0% {\n      transform: translateX(100%);\n    }\n    20% {\n      transform: translateX(-100%);\n    }\n    100% {\n      transform: translateX(-100%);\n    }\n  }\n\n  @keyframes rewards-pill-star-rotate {\n    0% {\n      opacity: 0;\n      transform: rotate(0deg) scale(0);\n    }\n    5% {\n      opacity: 1;\n      transform: rotate(45deg) scale(1);\n    }\n    15% {\n      opacity: 1;\n      transform: rotate(135deg) scale(1);\n    }\n    20% {\n      opacity: 0;\n      transform: rotate(180deg) scale(0);\n    }\n    100% {\n      opacity: 0;\n      transform: rotate(180deg) scale(0);\n    }\n  }\n\n  \/* Rewards Pill Countdown - wrapper layout for countdown + pill *\/\n  .rewards-pill-wrapper:has(.rewards-pill-countdown:not([hidden])) {\n    display: flex;\n    align-items: center;\n\n    @media (min-width: 601px) {\n      flex-direction: row;\n      gap: 10px;\n      margin-bottom: 6px;\n    }\n\n    @media (max-width: 600px) {\n      flex-direction: column;\n      gap: 12px;\n    }\n  }\n\n  .rewards-pill-countdown[hidden] {\n    display: none !important;\n  }\n\n  .rewards-pill-countdown {\n    font-family: 'Modern Era', Arial, sans-serif;\n    font-weight: 800;\n    font-size: 12px;\n    line-height: 100%;\n    letter-spacing: -0.025em;\n    font-variant-numeric: lining-nums tabular-nums;\n    color: #232320;\n    white-space: nowrap;\n    display: flex;\n    align-items: center;\n\n    @media (min-width: 601px) {\n      order: -1;\n    }\n\n    @media (max-width: 600px) {\n      justify-content: center;\n      margin-bottom: 8px;\n    }\n  }\n\n  .rewards-pill-countdown__timer {\n    display: inline;\n  }\n\n  .rewards-pill-countdown__sep {\n    margin: 0 1px;\n  }\n\n  \/* Partner card (stacked rewards design) *\/\n  .rewards-pill__partner--large {\n    display: flex;\n    align-items: center;\n    gap: 2px;\n  }\n\n  .rewards-pill__partner--compact {\n    display: none;\n    align-items: center;\n    gap: 2px;\n  }\n\n  .rewards-pill__plus {\n    font-family: 'Modern Era', Arial, Helvetica, sans-serif;\n    font-weight: 900;\n    font-size: 14px;\n    color: #232320;\n    z-index: 1;\n    line-height: 1;\n  }\n\n  .rewards-pill__partner-svg {\n    width: 68px;\n    height: 48px;\n    filter: drop-shadow(0px 0px 6.2px rgba(0, 0, 0, 0.15));\n  }\n\n  @media (max-width: 960px) {\n    .rewards-pill[data-show-tc=\"true\"] .rewards-pill__partner--large {\n      display: none;\n    }\n\n    .rewards-pill[data-show-tc=\"true\"] .rewards-pill__partner--compact {\n      display: flex;\n    }\n  }\n\n<\/style><script>\n(function () {\n  window.isRewardsPillScriptInitialized ??= false;\n  if (window.isRewardsPillScriptInitialized) return;\n  window.isRewardsPillScriptInitialized = true;\n\n  function getLinkParams(anchor) {\n    const redirectUrl = anchor.getAttribute(\"data-redirect-url\") || anchor.href || \"\";\n    try {\n      const url = new URL(redirectUrl);\n      const rawParams = url.searchParams.get(\"redirect_tracking_params\");\n      if (!rawParams) return;\n      const { offer_id, niche_code, site, product_name, product_id } = JSON.parse(\n        decodeURIComponent(rawParams)\n      );\n      return {\n        redirectUrl,\n        offerId: offer_id,\n        niche: niche_code || site,\n        productName: product_name,\n        productId: product_id,\n      };\n    } catch (e) {\n      return;\n    }\n  }\n\n  function resolvePillContext(pill) {\n    \/\/ Table pill: lives inside a tr[data-product-id]\n    const row = pill.closest(\"tr[data-product-id]\");\n    if (row) {\n      return {\n        container: row,\n        cta: row.querySelector(\".rewards--cta\"),\n      };\n    }\n    \/\/ Standalone pill: shortcode \/ non-table context\n    if (pill.hasAttribute(\"data-campaign-name\")) {\n      const container = pill.closest(\".rewards--container\");\n      return {\n        container: container ? container.querySelector(\".rewards--element-container\") : null,\n        cta: container\n          ? container.querySelector(\"a.rewards--cta:not([aria-hidden='true'])\")\n          : null,\n      };\n    }\n    return { container: null, cta: null };\n  }\n\n  document.addEventListener(\"click\", (event) => {\n    const pill = event.target.closest(\".rewards-pill\");\n    if (!pill) return;\n\n    const { container, cta } = resolvePillContext(pill);\n    if (!container || !cta) return;\n\n    const linkParams = getLinkParams(cta);\n    if (!linkParams) return;\n\n    const params = {\n      productId: linkParams.productId,\n      campaignName:\n        container.getAttribute(\"data-rewards-campaign-name\") ||\n        pill.getAttribute(\"data-campaign-name\") ||\n        \"\",\n      redirectUrl: linkParams.redirectUrl,\n      productName: linkParams.productName,\n      providerName: container.getAttribute(\"data-provider-name\") || \"\",\n      niche: linkParams.niche,\n      offerId: linkParams.offerId,\n      component: \"infobox\",\n      badgeHtml: pill.outerHTML,\n    };\n\n    if (window.rewards && typeof window.rewards.displayModal === \"function\") {\n      window.rewards.displayModal(params, false, cta);\n    }\n  });\n})();\n<\/script><tr data-product-id=\"5ba47813-dec4-4734-8778-bfa4edb45aab\" data-provider-id=\"de539f0b-5b87-4abf-aa61-e7e3b8329b58\" data-product-name=\"CarsFast Car Loans\" data-provider-name=\"CarsFast\" class=\"grid-column-count-4  mobile-column-count-3 mobile-row-count-7  js-comparison-table__row  heroInTable__featuredProduct heroInTable__featuredProduct--yellow\"><td class=\"comparison-table__name combined-column-header sponsored-row  f1-clarity-header\"><div class=\"table-disclaimer__cellWrapper\"><button class=\"table-disclaimer\" data-target=\"#disclaimer_popup\" data-toggle=\"modal\" title=\"Important information about this website\" type=\"button\"><span class=\"table-disclaimer__text\"><span class=\"badge-text\">Promoted<\/span><\/span><svg class=\"luna-icon\" aria-hidden=\"true\"><use xlink:href=\"#info\"><\/use><\/svg><\/button><\/div><a href=\"https:\/\/www.finder.com\/ca\/car-loans\/carsfast-car-loan\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png\" alt=\"CarsFast logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/67c8b89a3e503.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafcl')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">8.8<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/car-loans\/carsfast-car-loan\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">CarsFast Car Loans<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafcl.product.datapoint_cafcl_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafcl')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">8.8<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                rounded-bottom-left\n                                                                                                                                                                                                                            \" data-sortvalue=\"\" data-column-index=\"2\" data-decorator=\"text,cafcl.product.datapoint_cafcl_apr_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"APR Range\"><span class=\"detail-highlight\">3.90% - 29.90%<span class=\"table-popover\" rel=\"popover\" data-content=\"Interest rates shown reflect the Annual Percentage Rate (APR) range currently advertised by the lender and are subject to change anytime, without notice. Finder does not guarantee that the figures shown will continue to be accurate or current. Figures shown are solely intended to be indicative and for general informational purposes only. Confirm the actual rates currently offered with the lender directly. Your exact rate, if any is offered to you, will be determined solely by the lender based on its assessment of your loan application, which is subject to the lender\u2019s terms and conditions and credit criteria.\" title=\"\" data-original-title=\"\"><\/span><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                  bottom-order-3\n                                                                                \" data-sortvalue=\"\" data-column-index=\"3\" data-decorator=\"text,cafcl.product.datapoint_cafcl_loan_amount_range_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Loan Amount\"><span class=\"detail-highlight\">$500 - $75,000<\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                rounded-bottom-right\n                                                                                                                                                                                                                                                                                                    \" data-sortvalue=\"\" data-column-index=\"4\" data-decorator=\"text,cafcl.product.datapoint_cafcl_loan_term_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Loan Term\"><span class=\"detail-highlight\">12 - 96 months<\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                                                                                                            comparison-table__feature--longtext no-margin-bottom no-padding-bottom sorter-false\" data-sortvalue=\"Requirements: {{DETAILS.REQUIREMENTS}}\" data-column-index=\"5\" data-decorator=\"text,cafcl.value.misc_table_offer_cafcl\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Requirements\"><style>td.comparison-table__feature--longtext div.comparison-table__cellWrapper { width:  100%; }<\/style><div class=\"has-margin-bottom-xxsmall\" style=\"width: 100%; background-color: #F5F4EF; color: #; font-weight: 600; padding: 0.85em !important; border-radius: 3px; line-height: 18px;\">Requirements: Min. income of $2,000\/month, 3+ months employed<\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                                                                                                            comparison-table__feature--longtext margin-bottom padding-bottom no-padding-top\" data-sortvalue=\"CarsFast will connect you with a dealership near you to help you find the right financing.\" data-column-index=\"6\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Broker Compliance\">\n                        CarsFast will connect you with a dealership near you to help you find the right financing.\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-4 bottom-order-4\"><div class=\"comparison-table__cellWrapper\"><button type=\"button\" class=\"js-comparison-table__save-button comparison-table__save-button\" aria-label=\"Save\" aria-pressed=\"false\" title=\"Save\"><\/button><a data-component-props='{\"finderScore\":8.8,\"badges\":[],\"productId\":\"5ba47813-dec4-4734-8778-bfa4edb45aab\"}' data-component-id=\"1026\" data-component-version=\"1\" target=\"_blank\" rel=\"sponsored\" href=\"https:\/\/www.finder.com\/redirect\/ca\/car-loans\/carsfast-lendingarch-ca-car-loan-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22table%22%2C%22site%22%3A%22CAFCL%22%2C%22fieldset%22%3A%22cafcl-generic%22%2C%22template%22%3A%22comparison%22%2C%22category_id%22%3A%2221cbe458-e531-49a6-890a-00abe8f961e3%22%2C%22category_name%22%3A%22Car%2BLoan%2BInterest%2BRates%2BPage%22%2C%22is_sorted%22%3A%220%22%2C%22is_filtered%22%3A%220%22%2C%22cta_render_ts%22%3A%221782440034%22%2C%22sponsored%22%3A%221%22%2C%22position%22%3A%221%22%2C%22offer_id%22%3A%2216112%22%2C%22niche_code%22%3A%22CAFCL%22%2C%22product_id%22%3A%225ba47813-dec4-4734-8778-bfa4edb45aab%22%2C%22product_name%22%3A%22CarsFast%2BCar%2BLoans%22%2C%22post_id%22%3A%22768032%22%2C%22post_path%22%3A%22car-loans%252Fcar-loan-monthly-payment-calculator%22%2C%22post_country%22%3A%22ca%22%7D\" class=\"luna-button luna-button--success luna-button--medium has-margin-bottom-xsmall button--cta\" title=\"Go to CarsFast's site\">Go to site<\/a><a href=\"#\" class=\"comparison-table__more-button\" title=\"Read more about CarsFast Car Loans\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":8.8,\"badges\":[],\"productId\":\"5ba47813-dec4-4734-8778-bfa4edb45aab\"}' data-custom-event-active=\"true\"><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg><span>View details<\/span><\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-5ba47813-dec4-4734-8778-bfa4edb45aab\" value=\"5ba47813-dec4-4734-8778-bfa4edb45aab\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}                        \t               8.8                    Great                                          CarsFast Car Loans            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":8.8,\"badges\":[],\"productId\":\"5ba47813-dec4-4734-8778-bfa4edb45aab\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-5ba47813-dec4-4734-8778-bfa4edb45aab\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><tr data-product-id=\"443c52a6-96bc-495d-82c8-bfb5be873298\" data-provider-id=\"0a97dc4f-7c12-41c3-81be-8e90f58eb3d1\" data-product-name=\"My Auto Approval Vehicle Loan\" data-provider-name=\"My Auto Approval\" class=\"grid-column-count-4  mobile-column-count-3 mobile-row-count-7  js-comparison-table__row  heroInTable__featuredProduct heroInTable__featuredProduct--yellow\"><td class=\"comparison-table__name combined-column-header sponsored-row  f1-clarity-header\"><div class=\"table-disclaimer__cellWrapper\"><button class=\"table-disclaimer\" data-target=\"#disclaimer_popup\" data-toggle=\"modal\" title=\"Important information about this website\" type=\"button\"><span class=\"table-disclaimer__text\"><span class=\"badge-text\">Promoted<\/span><\/span><svg class=\"luna-icon\" aria-hidden=\"true\"><use xlink:href=\"#info\"><\/use><\/svg><\/button><\/div><a href=\"https:\/\/www.finder.com\/ca\/car-loans\/my-auto-approval-review\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/678e98baec5ed.png\" alt=\"My Auto Approval logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/678e98baec5ed.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/678e98baec5ed.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/678e98baec5ed.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/678e98baec5ed.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/678e98baec5ed.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafcl')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/car-loans\/my-auto-approval-review\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">My Auto Approval Vehicle Loan<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafcl.product.datapoint_cafcl_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafcl')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                rounded-bottom-left\n                                                                                                                                                                                                                            \" data-sortvalue=\"\" data-column-index=\"2\" data-decorator=\"text,cafcl.product.datapoint_cafcl_apr_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"APR Range\"><span class=\"detail-highlight\">0% - 35.00%<span class=\"table-popover\" rel=\"popover\" data-content=\"0% financing is for new cars only. Interest rates shown reflect the Annual Percentage Rate (APR) range currently advertised by the lender and are subject to change anytime, without notice. Finder does not guarantee that the figures shown will continue to be accurate or current. Figures shown are solely intended to be indicative and for general informational purposes only. Confirm the actual rates currently offered with the lender directly. Your exact rate, if any is offered to you, will be determined solely by the lender based on its assessment of your loan application, which is subject to the lender\u2019s terms and conditions and credit criteria.\" title=\"\" data-original-title=\"\"><\/span><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                  bottom-order-3\n                                                                                \" data-sortvalue=\"\" data-column-index=\"3\" data-decorator=\"text,cafcl.product.datapoint_cafcl_loan_amount_range_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Loan Amount\"><span class=\"detail-highlight\">$5,000 - $75,000<\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                rounded-bottom-right\n                                                                                                                                                                                                                                                                                                    \" data-sortvalue=\"\" data-column-index=\"4\" data-decorator=\"text,cafcl.product.datapoint_cafcl_loan_term_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Loan Term\"><span class=\"detail-highlight\">12 - 96 months<\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                                                                                                            comparison-table__feature--longtext no-margin-bottom no-padding-bottom sorter-false\" data-sortvalue=\"Requirements: {{DETAILS.REQUIREMENTS}}\" data-column-index=\"5\" data-decorator=\"text,cafcl.value.misc_table_offer_cafcl\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Requirements\"><style>td.comparison-table__feature--longtext div.comparison-table__cellWrapper { width:  100%; }<\/style><div class=\"has-margin-bottom-xxsmall\" style=\"width: 100%; background-color: #F5F4EF; color: #; font-weight: 600; padding: 0.85em !important; border-radius: 3px; line-height: 18px;\">Requirements: Min. income of $1,800 \/month, 3+ months employed<\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                                                                                                            comparison-table__feature--longtext margin-bottom padding-bottom no-padding-top\" data-sortvalue=\"My Auto Approval is a loan search platform. Get matched with a suitable dealer based on your credit history and borrowing requirements.\" data-column-index=\"6\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Broker Compliance\">\n                        My Auto Approval is a loan search platform. Get matched with a suitable dealer based on your credit history and borrowing requirements.\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-4 bottom-order-4\"><div class=\"comparison-table__cellWrapper\"><button type=\"button\" class=\"js-comparison-table__save-button comparison-table__save-button\" aria-label=\"Save\" aria-pressed=\"false\" title=\"Save\"><\/button><a data-component-props='{\"finderScore\":9,\"badges\":[],\"productId\":\"443c52a6-96bc-495d-82c8-bfb5be873298\"}' data-component-id=\"1026\" data-component-version=\"1\" target=\"_blank\" rel=\"sponsored\" href=\"https:\/\/www.finder.com\/redirect\/ca\/car-loans\/myautoapproval-car-loans-ca-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22table%22%2C%22site%22%3A%22CAFCL%22%2C%22fieldset%22%3A%22cafcl-generic%22%2C%22template%22%3A%22comparison%22%2C%22category_id%22%3A%2221cbe458-e531-49a6-890a-00abe8f961e3%22%2C%22category_name%22%3A%22Car%2BLoan%2BInterest%2BRates%2BPage%22%2C%22is_sorted%22%3A%220%22%2C%22is_filtered%22%3A%220%22%2C%22cta_render_ts%22%3A%221782440034%22%2C%22sponsored%22%3A%221%22%2C%22position%22%3A%222%22%2C%22offer_id%22%3A%2225813%22%2C%22niche_code%22%3A%22CAFCL%22%2C%22product_id%22%3A%22443c52a6-96bc-495d-82c8-bfb5be873298%22%2C%22product_name%22%3A%22My%2BAuto%2BApproval%2BVehicle%2BLoan%22%2C%22post_id%22%3A%22768032%22%2C%22post_path%22%3A%22car-loans%252Fcar-loan-monthly-payment-calculator%22%2C%22post_country%22%3A%22ca%22%7D\" class=\"luna-button luna-button--success luna-button--medium has-margin-bottom-xsmall button--cta\" title=\"Go to My Auto Approval's site\">Go to site<\/a><a href=\"#\" class=\"comparison-table__more-button\" title=\"Read more about My Auto Approval Vehicle Loan\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":9,\"badges\":[],\"productId\":\"443c52a6-96bc-495d-82c8-bfb5be873298\"}' data-custom-event-active=\"true\"><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg><span>View details<\/span><\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-443c52a6-96bc-495d-82c8-bfb5be873298\" value=\"443c52a6-96bc-495d-82c8-bfb5be873298\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}                        \t               9                    Excellent                                          My Auto Approval Vehicle Loan            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":9,\"badges\":[],\"productId\":\"443c52a6-96bc-495d-82c8-bfb5be873298\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-443c52a6-96bc-495d-82c8-bfb5be873298\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><tr data-product-id=\"98559dd6-c17b-40fb-a619-3014d270fc9d\" data-provider-id=\"12ee2ade-e1e9-43f0-b34b-760e916e902f\" data-product-name=\"Loans Canada Car Loans\" data-provider-name=\"Loans Canada \" class=\"grid-column-count-4  mobile-column-count-3 mobile-row-count-7  js-comparison-table__row  heroInTable__featuredProduct heroInTable__featuredProduct--yellow\"><td class=\"comparison-table__name combined-column-header sponsored-row  f1-clarity-header\"><div class=\"table-disclaimer__cellWrapper\"><button class=\"table-disclaimer\" data-target=\"#disclaimer_popup\" data-toggle=\"modal\" title=\"Important information about this website\" type=\"button\"><span class=\"table-disclaimer__text\"><span class=\"badge-text\">Promoted<\/span><\/span><svg class=\"luna-icon\" aria-hidden=\"true\"><use xlink:href=\"#info\"><\/use><\/svg><\/button><\/div><a href=\"https:\/\/www.finder.com\/ca\/car-loans\/loans-canada-car-loans-review\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png\" alt=\"Loans Canada  logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/5f8f0c7f7fe9e.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafcl')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/car-loans\/loans-canada-car-loans-review\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">Loans Canada Car Loans<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafcl.product.datapoint_cafcl_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafcl')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                rounded-bottom-left\n                                                                                                                                                                                                                            \" data-sortvalue=\"\" data-column-index=\"2\" data-decorator=\"text,cafcl.product.datapoint_cafcl_apr_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"APR Range\"><span class=\"detail-highlight\">0% - 35.00%<span class=\"table-popover\" rel=\"popover\" data-content=\"0% financing is for new cars only. Interest rates shown reflect the Annual Percentage Rate (APR) range currently advertised by the lender and are subject to change anytime, without notice. Finder does not guarantee that the figures shown will continue to be accurate or current. Figures shown are solely intended to be indicative and for general informational purposes only. Confirm the actual rates currently offered with the lender directly. Your exact rate, if any is offered to you, will be determined solely by the lender based on its assessment of your loan application, which is subject to the lender\u2019s terms and conditions and credit criteria.\" title=\"\" data-original-title=\"\"><\/span><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                  bottom-order-3\n                                                                                \" data-sortvalue=\"\" data-column-index=\"3\" data-decorator=\"text,cafcl.product.datapoint_cafcl_loan_amount_range_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Loan Amount\"><span class=\"detail-highlight\">$3,000 - $50,000<\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                rounded-bottom-right\n                                                                                                                                                                                                                                                                                                    \" data-sortvalue=\"\" data-column-index=\"4\" data-decorator=\"text,cafcl.product.datapoint_cafcl_loan_term_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Loan Term\"><span class=\"detail-highlight\">3-60 months<\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                                                                                                            comparison-table__feature--longtext no-margin-bottom no-padding-bottom sorter-false\" data-sortvalue=\"Requirements: {{DETAILS.REQUIREMENTS}}\" data-column-index=\"5\" data-decorator=\"text,cafcl.value.misc_table_offer_cafcl\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Requirements\"><style>td.comparison-table__feature--longtext div.comparison-table__cellWrapper { width:  100%; }<\/style><div class=\"has-margin-bottom-xxsmall\" style=\"width: 100%; background-color: #F5F4EF; color: #; font-weight: 600; padding: 0.85em !important; border-radius: 3px; line-height: 18px;\">Requirements: Min. income of $1,800\/month, 3+ months employed<\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                                                                                                            comparison-table__feature--longtext margin-bottom padding-bottom no-padding-top\" data-sortvalue=\"Loans Canada is a loan search platform. Get matched with a suitable dealer based on your credit history and borrowing requirements.\" data-column-index=\"6\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Broker Compliance\">\n                        Loans Canada is a loan search platform. Get matched with a suitable dealer based on your credit history and borrowing requirements.\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-4 bottom-order-4\"><div class=\"comparison-table__cellWrapper\"><button type=\"button\" class=\"js-comparison-table__save-button comparison-table__save-button\" aria-label=\"Save\" aria-pressed=\"false\" title=\"Save\"><\/button><a data-component-props='{\"finderScore\":9,\"badges\":[],\"productId\":\"98559dd6-c17b-40fb-a619-3014d270fc9d\"}' data-component-id=\"1026\" data-component-version=\"1\" target=\"_blank\" rel=\"sponsored\" href=\"https:\/\/www.finder.com\/redirect\/ca\/car-loans\/loans-canada-car-loan-ca-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22table%22%2C%22site%22%3A%22CAFCL%22%2C%22fieldset%22%3A%22cafcl-generic%22%2C%22template%22%3A%22comparison%22%2C%22category_id%22%3A%2221cbe458-e531-49a6-890a-00abe8f961e3%22%2C%22category_name%22%3A%22Car%2BLoan%2BInterest%2BRates%2BPage%22%2C%22is_sorted%22%3A%220%22%2C%22is_filtered%22%3A%220%22%2C%22cta_render_ts%22%3A%221782440034%22%2C%22sponsored%22%3A%221%22%2C%22position%22%3A%223%22%2C%22offer_id%22%3A%2217709%22%2C%22niche_code%22%3A%22CAFCL%22%2C%22product_id%22%3A%2298559dd6-c17b-40fb-a619-3014d270fc9d%22%2C%22product_name%22%3A%22Loans%2BCanada%2BCar%2BLoans%22%2C%22post_id%22%3A%22768032%22%2C%22post_path%22%3A%22car-loans%252Fcar-loan-monthly-payment-calculator%22%2C%22post_country%22%3A%22ca%22%7D\" class=\"luna-button luna-button--success luna-button--medium has-margin-bottom-xsmall button--cta\" title=\"Go to Loans Canada 's site\">Go to site<\/a><a href=\"#\" class=\"comparison-table__more-button\" title=\"Read more about Loans Canada Car Loans\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":9,\"badges\":[],\"productId\":\"98559dd6-c17b-40fb-a619-3014d270fc9d\"}' data-custom-event-active=\"true\"><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg><span>View details<\/span><\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-98559dd6-c17b-40fb-a619-3014d270fc9d\" value=\"98559dd6-c17b-40fb-a619-3014d270fc9d\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}                        \t               9                    Excellent                                          Loans Canada Car Loans            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":9,\"badges\":[],\"productId\":\"98559dd6-c17b-40fb-a619-3014d270fc9d\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-98559dd6-c17b-40fb-a619-3014d270fc9d\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><tr data-product-id=\"0d4f0bff-282c-4e96-8dc1-fe9451d43cdb\" data-provider-id=\"20b1929d-464e-4496-a6df-8487d6958d19\" data-product-name=\"Approval Genie Car Loans\" data-provider-name=\"Approval Genie\" class=\"grid-column-count-4  mobile-column-count-3 mobile-row-count-7  js-comparison-table__row  \"><td class=\"comparison-table__name combined-column-header   f1-clarity-header\"><a href=\"https:\/\/www.finder.com\/ca\/car-loans\/approval-genie-review\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/643de4218306f.png\" alt=\"Approval Genie logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/643de4218306f.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/643de4218306f.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/643de4218306f.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/643de4218306f.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/643de4218306f.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafcl')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9.1<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/car-loans\/approval-genie-review\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">Approval Genie Car Loans<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafcl.product.datapoint_cafcl_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafcl')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9.1<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                rounded-bottom-left\n                                                                                                                                                                                                                            \" data-sortvalue=\"\" data-column-index=\"2\" data-decorator=\"text,cafcl.product.datapoint_cafcl_apr_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"APR Range\"><span class=\"detail-highlight\">3.90% - 29.90%<span class=\"table-popover\" rel=\"popover\" data-content=\"Interest rates shown reflect the Annual Percentage Rate (APR) range currently advertised by the lender and are subject to change anytime, without notice. Finder does not guarantee that the figures shown will continue to be accurate or current. Figures shown are solely intended to be indicative and for general informational purposes only. Confirm the actual rates currently offered with the lender directly. Your exact rate, if any is offered to you, will be determined solely by the lender based on its assessment of your loan application, which is subject to the lender\u2019s terms and conditions and credit criteria.\" title=\"\" data-original-title=\"\"><\/span><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                  bottom-order-3\n                                                                                \" data-sortvalue=\"\" data-column-index=\"3\" data-decorator=\"text,cafcl.product.datapoint_cafcl_loan_amount_range_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Loan Amount\"><span class=\"detail-highlight\">$5,000 - $75,000<\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                rounded-bottom-right\n                                                                                                                                                                                                                                                                                                    \" data-sortvalue=\"\" data-column-index=\"4\" data-decorator=\"text,cafcl.product.datapoint_cafcl_loan_term_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Loan Term\"><span class=\"detail-highlight\">12 - 84 months<\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                                                                                                            comparison-table__feature--longtext no-margin-bottom no-padding-bottom sorter-false\" data-sortvalue=\"Requirements: {{DETAILS.REQUIREMENTS}}\" data-column-index=\"5\" data-decorator=\"text,cafcl.value.misc_table_offer_cafcl\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Requirements\"><style>td.comparison-table__feature--longtext div.comparison-table__cellWrapper { width:  100%; }<\/style><div class=\"has-margin-bottom-xxsmall\" style=\"width: 100%; background-color: #F5F4EF; color: #; font-weight: 600; padding: 0.85em !important; border-radius: 3px; line-height: 18px;\">Requirements: Min. income of $2,000 \/month, 3+ months employed, Ontario only<\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                                                                                                            comparison-table__feature--longtext margin-bottom padding-bottom no-padding-top\" data-sortvalue=\"Get customized car loan and auto financing solutions for a used vehicle that fits your budget and lifestyle.\" data-column-index=\"6\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Broker Compliance\">\n                        Get customized car loan and auto financing solutions for a used vehicle that fits your budget and lifestyle.\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-4 bottom-order-4\"><div class=\"comparison-table__cellWrapper\"><button type=\"button\" class=\"js-comparison-table__save-button comparison-table__save-button\" aria-label=\"Save\" aria-pressed=\"false\" title=\"Save\"><\/button><a href=\"#\" class=\"comparison-table__more-button\" title=\"Read more about Approval Genie Car Loans\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":9.1,\"badges\":[],\"productId\":\"0d4f0bff-282c-4e96-8dc1-fe9451d43cdb\"}' data-custom-event-active=\"true\"><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg><span>View details<\/span><\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-0d4f0bff-282c-4e96-8dc1-fe9451d43cdb\" value=\"0d4f0bff-282c-4e96-8dc1-fe9451d43cdb\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}                        \t               9.1                    Excellent                                          Approval Genie Car Loans            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":9.1,\"badges\":[],\"productId\":\"0d4f0bff-282c-4e96-8dc1-fe9451d43cdb\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-0d4f0bff-282c-4e96-8dc1-fe9451d43cdb\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><tr data-product-id=\"de1c9023-15d0-4348-91ea-3fc9fa05ca59\" data-provider-id=\"64f3760a-9630-4758-a75f-5f8b97ee3ef1\" data-product-name=\"Clutch Car Loans\" data-provider-name=\"Clutch\" class=\"grid-column-count-4  mobile-column-count-3 mobile-row-count-7  js-comparison-table__row  \"><td class=\"comparison-table__name combined-column-header   f1-clarity-header\"><a href=\"https:\/\/www.finder.com\/ca\/car-loans\/online-car-dealers-canada\/clutch-review\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png\" alt=\"Clutch logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/61ead18a0cdce.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafcl')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">8.7<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/car-loans\/online-car-dealers-canada\/clutch-review\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">Clutch Car Loans<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafcl.product.datapoint_cafcl_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafcl')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">8.7<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                rounded-bottom-left\n                                                                                                                                                                                                                            \" data-sortvalue=\"\" data-column-index=\"2\" data-decorator=\"text,cafcl.product.datapoint_cafcl_apr_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"APR Range\"><span class=\"detail-highlight\">From 7.99%<span class=\"table-popover\" rel=\"popover\" data-content=\"Interest rates shown reflect the Annual Percentage Rate (APR) range currently advertised by the lender and are subject to change anytime, without notice. Finder does not guarantee that the figures shown will continue to be accurate or current. Figures shown are solely intended to be indicative and for general informational purposes only. Confirm the actual rates currently offered with the lender directly. Your exact rate, if any is offered to you, will be determined solely by the lender based on its assessment of your loan application, which is subject to the lender\u2019s terms and conditions and credit criteria.\" title=\"\" data-original-title=\"\"><\/span><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                  bottom-order-3\n                                                                                \" data-sortvalue=\"\" data-column-index=\"3\" data-decorator=\"text,cafcl.product.datapoint_cafcl_loan_amount_range_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Loan Amount\"><span class=\"detail-highlight\">$7,500 - No max.<\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                rounded-bottom-right\n                                                                                                                                                                                                                                                                                                    \" data-sortvalue=\"\" data-column-index=\"4\" data-decorator=\"text,cafcl.product.datapoint_cafcl_loan_term_large\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Loan Term\"><span class=\"detail-highlight\">24 - 96 months<\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                                                                                                            comparison-table__feature--longtext no-margin-bottom no-padding-bottom sorter-false\" data-sortvalue=\"Requirements: {{DETAILS.REQUIREMENTS}}\" data-column-index=\"5\" data-decorator=\"text,cafcl.value.misc_table_offer_cafcl\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Requirements\"><style>td.comparison-table__feature--longtext div.comparison-table__cellWrapper { width:  100%; }<\/style><div class=\"has-margin-bottom-xxsmall\" style=\"width: 100%; background-color: #F5F4EF; color: #; font-weight: 600; padding: 0.85em !important; border-radius: 3px; line-height: 18px;\">Requirements: 3+ months employed; maximum 1 bankruptcy; only available in Ontario, New Brunswick and Nova Scotia<\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                                                                                                            comparison-table__feature--longtext margin-bottom padding-bottom no-padding-top\" data-sortvalue=\"Apply for financing with online dealer Clutch, who partners with some of Canada\u2019s largest financial institutions to get you competitive interest rates.\" data-column-index=\"6\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Broker Compliance\">\n                        Apply for financing with online dealer Clutch, who partners with some of Canada\u2019s largest financial institutions to get you competitive interest rates.\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-4 bottom-order-4\"><div class=\"comparison-table__cellWrapper\"><button type=\"button\" class=\"js-comparison-table__save-button comparison-table__save-button\" aria-label=\"Save\" aria-pressed=\"false\" title=\"Save\"><\/button><a data-component-props='{\"finderScore\":8.7,\"badges\":[],\"productId\":\"de1c9023-15d0-4348-91ea-3fc9fa05ca59\"}' data-component-id=\"1026\" data-component-version=\"1\" target=\"_blank\" rel=\"sponsored\" href=\"https:\/\/www.finder.com\/redirect\/ca\/car-loans\/clutch-car-financing-ca-car-loans-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22table%22%2C%22site%22%3A%22CAFCL%22%2C%22fieldset%22%3A%22cafcl-generic%22%2C%22template%22%3A%22comparison%22%2C%22category_id%22%3A%2221cbe458-e531-49a6-890a-00abe8f961e3%22%2C%22category_name%22%3A%22Car%2BLoan%2BInterest%2BRates%2BPage%22%2C%22is_sorted%22%3A%220%22%2C%22is_filtered%22%3A%220%22%2C%22cta_render_ts%22%3A%221782440034%22%2C%22position%22%3A%225%22%2C%22offer_id%22%3A%2221758%22%2C%22niche_code%22%3A%22CAFCL%22%2C%22product_id%22%3A%22de1c9023-15d0-4348-91ea-3fc9fa05ca59%22%2C%22product_name%22%3A%22Clutch%2BCar%2BLoans%22%2C%22post_id%22%3A%22768032%22%2C%22post_path%22%3A%22car-loans%252Fcar-loan-monthly-payment-calculator%22%2C%22post_country%22%3A%22ca%22%7D\" class=\"luna-button luna-button--success luna-button--medium has-margin-bottom-xsmall button--cta\" title=\"Go to Clutch's site\">Go to site<\/a><a href=\"#\" class=\"comparison-table__more-button\" title=\"Read more about Clutch Car Loans\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":8.7,\"badges\":[],\"productId\":\"de1c9023-15d0-4348-91ea-3fc9fa05ca59\"}' data-custom-event-active=\"true\"><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg><span>View details<\/span><\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-de1c9023-15d0-4348-91ea-3fc9fa05ca59\" value=\"de1c9023-15d0-4348-91ea-3fc9fa05ca59\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}                        \t               8.7                    Great                                          Clutch Car Loans            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":8.7,\"badges\":[],\"productId\":\"de1c9023-15d0-4348-91ea-3fc9fa05ca59\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-de1c9023-15d0-4348-91ea-3fc9fa05ca59\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><script>\n(function () {\n  window.isInfoBoxMutationObserverInitialized ??= false;\n  if (window.isInfoBoxMutationObserverInitialized) return;\n  window.isInfoBoxMutationObserverInitialized = true;\n\n  document.addEventListener(\"DOMContentLoaded\", () => {\n    function getLinkParams(anchor) {\n      const redirectUrl =\n        anchor.getAttribute(\"data-redirect-url\") || anchor.href || \"\";\n\n      try {\n        const url = new URL(redirectUrl);\n        const rawParams = url.searchParams.get(\"redirect_tracking_params\");\n\n        if (!rawParams) return;\n        const decoded = decodeURIComponent(rawParams);\n        const parsed = JSON.parse(decoded);\n        const { offer_id, niche_code, site, product_name, product_id } = parsed;\n\n        return {\n          redirectUrl,\n          offerId: offer_id,\n          niche: niche_code || site,\n          productName: product_name,\n          productId: product_id,\n        };\n      } catch (e) {\n        console.error(\"Failed to parse redirect_tracking_params\", e);\n      }\n    }\n\n    function initCountdownTimer(rewardsProduct, endDateStr) {\n      const countdownEl = rewardsProduct.querySelector(\".deals-countdown\");\n      \n      if (!countdownEl || !endDateStr) return;\n\n      const daysEl = countdownEl.querySelector(\"[data-countdown-days]\");\n      const hoursEl = countdownEl.querySelector(\"[data-countdown-hours]\");\n      const minutesEl = countdownEl.querySelector(\"[data-countdown-minutes]\");\n      const secondsEl = countdownEl.querySelector(\"[data-countdown-seconds]\");\n\n      let countdownInterval;\n\n      const updateCountdown = () => {\n        const now = new Date().getTime();\n        const endTime = new Date(endDateStr).getTime();\n        const distance = endTime - now;\n\n        if (distance < 0) {\n          \/\/ Countdown finished\n          if (daysEl) daysEl.textContent = \"00d\";\n          if (hoursEl) hoursEl.textContent = \"00h\";\n          if (minutesEl) minutesEl.textContent = \"00m\";\n          if (secondsEl) secondsEl.textContent = \"00s\";\n          if (countdownInterval) {\n            clearInterval(countdownInterval);\n          }\n          return;\n        }\n\n        const days = Math.floor(distance \/ (1000 * 60 * 60 * 24));\n        const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n        const minutes = Math.floor((distance % (1000 * 60 * 60)) \/ (1000 * 60));\n        const seconds = Math.floor((distance % (1000 * 60)) \/ 1000);\n\n        if (daysEl) daysEl.textContent = days.toString().padStart(2, \"0\") + \"d\";\n        if (hoursEl) hoursEl.textContent = hours.toString().padStart(2, \"0\") + \"h\";\n        if (minutesEl) minutesEl.textContent = minutes.toString().padStart(2, \"0\") + \"m\";\n        if (secondsEl) secondsEl.textContent = seconds.toString().padStart(2, \"0\") + \"s\";\n      };\n\n      \/\/ Update immediately\n      updateCountdown();\n\n      \/\/ Update every second\n      countdownInterval = setInterval(updateCountdown, 1000);\n\n      \/\/ Store interval ID to clear it later if needed\n      rewardsProduct.dataset.countdownInterval = countdownInterval;\n    }\n\n    const initRewards = (table) => {\n      if (!table) return;\n\n      const recordIdsAttr = table.getAttribute(\"data-table-record-ids\");\n      if (!recordIdsAttr) return;\n\n      let productIds = [];\n      try {\n        const decoded = recordIdsAttr.replace(\/&quot;\/g, '\"');\n        productIds = JSON.parse(decoded);\n      } catch (e) {\n        return;\n      }\n\n      if (!productIds.length) return;\n\n      productIds.forEach((productId) => {\n        const rewardsProduct = table.querySelector(\n          `div[data-rewards-product-id=\"${productId}\"]:not([data-rewards-banner-attached])`\n        );\n        if (!rewardsProduct) return;\n\n        const endDateStr = rewardsProduct.getAttribute(\"data-end-date\");\n        if (!endDateStr) return;\n\n        \/\/ Format date for Australian locale (dd MMM yyyy)\n        const formattedDate = new Intl.DateTimeFormat(\"en-AU\", {\n          day: \"2-digit\",\n          month: \"short\",\n          year: \"numeric\",\n        }).format(new Date(endDateStr));\n\n        const endDateEl = rewardsProduct.querySelector(\".rewards-end-date\");\n        if (endDateEl && endDateEl.textContent !== formattedDate) {\n          endDateEl.textContent = ` ${formattedDate}`;\n        }\n\n        \/\/ Calculate days remaining\n        const days = Math.ceil((new Date(endDateStr) - new Date()) \/ 86400000);\n\n        \/\/ Show \"Ends Soon\" badge if campaign ends within 7 days\n        if (days <= 7 && days > 0) {\n          const dealsEndsEl = rewardsProduct.querySelector(\".deals-ends\");\n          const dealsPhoneEl = rewardsProduct.querySelector(\".deals-phone\");\n\n          if (dealsEndsEl && dealsEndsEl.style.display !== \"inline-flex\") {\n            dealsEndsEl.style.display = \"inline-flex\";\n          }\n          if (dealsPhoneEl && dealsPhoneEl.style.top !== \"23px\") {\n            dealsPhoneEl.style.top = \"23px\";\n          }\n        }\n\n        \/\/ Initialize countdown timer\n        initCountdownTimer(rewardsProduct, endDateStr);\n\n        const dealsLeftEl = rewardsProduct.querySelector(\".deals-left\");\n        const dealsList = rewardsProduct.querySelector(\".deals-list\");\n        const dealsHeader = rewardsProduct.querySelector(\".deals-header\");\n\n        const handleClick = (triggerEl) => {\n          const row = triggerEl.closest(\"tr\");\n\n          if (!row) return;\n\n          const cta = row.querySelector(\".rewards--cta\");\n\n          if (!cta) return;\n\n          const linkParams = getLinkParams(cta);\n          if (!linkParams) return;\n\n          const { productId, redirectUrl, productName, niche, offerId } = linkParams;\n\n          const modalParams = {\n            productId,\n            campaignName: row.getAttribute(\"data-rewards-campaign-name\") || \"\",\n            redirectUrl,\n            productName,\n            providerName: row.getAttribute(\"data-provider-name\") || \"\",\n            niche,\n            offerId,\n            component: \"infobox\",\n          };\n\n          if (\n            window.rewards &&\n            typeof window.rewards.displayModal === \"function\"\n          ) {\n            window.rewards.displayModal(modalParams, false, cta);\n          }\n        };\n\n        if (dealsLeftEl && !dealsLeftEl.dataset.bound) {\n          dealsLeftEl.dataset.bound = \"true\";\n          dealsLeftEl.addEventListener(\"click\", () => handleClick(dealsLeftEl));\n        }\n\n        if (dealsList && !dealsList.dataset.bound) {\n          dealsList.dataset.bound = \"true\";\n          dealsList.addEventListener(\"click\", () => handleClick(dealsList));\n        }\n\n        if (dealsHeader && !dealsHeader.dataset.bound) {\n          dealsHeader.dataset.bound = \"true\";\n          dealsHeader.addEventListener(\"click\", () => handleClick(dealsHeader));\n        }\n\n        rewardsProduct.dataset.rewardsBannerAttached = \"true\";\n      });\n    };\n\n    const tables = document.querySelectorAll(\n      \"table.rewards--container[data-table-record-ids]\"\n    );\n\n    tables.forEach((table) => {\n      const tableObserver = new MutationObserver(() => {\n        setTimeout(() => initRewards(table), 0);\n      });\n\n      tableObserver.observe(table, {\n        childList: true,\n        subtree: true,\n      });\n\n      initRewards(table);\n    });\n\n    \/\/ Pill countdown timers (minimal UX)\n    function initPillCountdowns() {\n      const countdowns = document.querySelectorAll(\"[data-rewards-pill-countdown]:not([data-pill-countdown-bound])\");\n\n      countdowns.forEach((el) => {\n        el.dataset.pillCountdownBound = \"true\";\n        const endDateStr = el.getAttribute(\"data-end-date\");\n        if (!endDateStr) return;\n\n        const endTime = new Date(endDateStr).getTime();\n        if (Number.isNaN(endTime)) return;\n        const now = new Date().getTime();\n        const distance = endTime - now;\n        const sevenDaysMs = 7 * 24 * 60 * 60 * 1000;\n\n        if (distance <= 0) {\n          const wrapper = el.closest(\".rewards-pill-wrapper\");\n          if (wrapper) wrapper.style.display = \"none\";\n          return;\n        }\n\n        if (distance > sevenDaysMs) {\n          return;\n        }\n\n        el.removeAttribute(\"hidden\");\n\n        const daysEl = el.querySelector(\"[data-pill-countdown-days]\");\n        const hoursEl = el.querySelector(\"[data-pill-countdown-hours]\");\n        const minutesEl = el.querySelector(\"[data-pill-countdown-minutes]\");\n        const secondsEl = el.querySelector(\"[data-pill-countdown-seconds]\");\n\n        let interval;\n        const updatePillCountdown = () => {\n          if (!el.isConnected) {\n            if (interval) clearInterval(interval);\n            return;\n          }\n\n          const remaining = endTime - new Date().getTime();\n\n          if (remaining <= 0) {\n            if (daysEl) daysEl.textContent = \"0d\";\n            if (hoursEl) hoursEl.textContent = \"0h\";\n            if (minutesEl) minutesEl.textContent = \"0m\";\n            if (secondsEl) secondsEl.textContent = \"0s\";\n            if (interval) clearInterval(interval);\n            \/\/ Hide pill wrapper on expiry\n            const wrapper = el.closest(\".rewards-pill-wrapper\");\n            if (wrapper) wrapper.style.display = \"none\";\n            return;\n          }\n\n          const days = Math.floor(remaining \/ (1000 * 60 * 60 * 24));\n          const hours = Math.floor((remaining % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n          const minutes = Math.floor((remaining % (1000 * 60 * 60)) \/ (1000 * 60));\n          const seconds = Math.floor((remaining % (1000 * 60)) \/ 1000);\n\n          if (daysEl) daysEl.textContent = days + \"d\";\n          if (hoursEl) hoursEl.textContent = hours + \"h\";\n          if (minutesEl) minutesEl.textContent = minutes + \"m\";\n          if (secondsEl) secondsEl.textContent = seconds + \"s\";\n        };\n\n        updatePillCountdown();\n        interval = setInterval(updatePillCountdown, 1000);\n      });\n    }\n\n    initPillCountdowns();\n\n    const allTables = document.querySelectorAll(\"table\");\n    allTables.forEach((table) => {\n      const observer = new MutationObserver(() => {\n        setTimeout(initPillCountdowns, 0);\n      });\n      observer.observe(table, { childList: true, subtree: true });\n    });\n  });\n})();\n<\/script><\/tbody><\/table><div class=\"comparison-table__loadingIndicator center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><div class=\"comparison-table__paginationContainer comparison-table__loadMoreContainer \"><div class=\"comparison-table__loadMore comparison-table__paginationNav\"><button class=\"luna-button luna-button--primary js-comparison-table__showMore\" type=\"button\" data-offset=\"5\">Load More<\/button><div class=\"js-show-more-data_count-21cbe458-e531-49a6-890a-00abe8f961e3 comparison-table__dataCount\">Showing\n\t\t\t5\n\t\t\tof\n\t\t\t15\n\t\t\tresults\t\t<\/div><\/div><\/div><\/form><\/section><\/div><div id=\"compare-bar-v2\" class=\"compareBarV2__root rewards--container loyalty-rewards--container\" data-niche=\"CAFCL\" data-rewards-component=\"compare-products\"><\/div><div class=\"finder-score-methodology\"><h3 data-toc=\"false\" id=\"finder-score-methodology\">Finder Score for car loans<\/h3>\n\n<p>To make comparing even easier, we came up with the <a href=\"https:\/\/www.finder.com\/ca\/finder-score\">Finder Score<\/a>. Interest rates, fees and features across 20+ car loans are all weighted and scaled to produce a score out of 10. The higher the score the better the loan\u2014simple.<\/p>\n\n<p style=\"text-align: center;\"><a class=\"luna-button luna-button--primary\" href=\"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-ratings-methodology\">Read the full methodology<\/a><\/p><\/div>\n    <\/div>\n<\/div>\n    <\/div>\n<h3>Bottom line<\/h3><p>Using a car loan payment calculator can help you understand what kind of car is in your budget. After all, your monthly payment is the immediate cost you\u2019ll have to deal with on a regular basis. If you can\u2019t afford the monthly payments on a loan for a particular car, then you probably can\u2019t afford that car.<\/p><p>Keep in mind that you might only be able to get a loan worth 80% of your car\u2019s value. This means that you might be required to pay the other 20% upfront. Paying some money up front can actually be a good thing because your entire payment goes directly to reducing the principal amount owing on the car. Any part of the purchase price covered by the loan is subject to interest, which will eat away at the regular payments you make.<\/p><h3>Frequently asked questions<\/h3><ul class=\"luna-accordionGroup accordionGroup\">\n\t<li class=\"luna-accordion\" data-accordion=\"accordion\">\n    <div class=\"luna-accordion__summary\">\n        <h4 class=\"luna-accordion__heading\">\n            <button class=\"luna-accordion__action collapsed\" aria-expanded=\"false\" aria-controls=\"faq-builder-0000000003\" data-toggle=\"collapse\" data-target=\"#faq-builder-0000000003\">\n                <span class=\"luna-accordion__title\">Is $400 a lot for a car payment?<\/span>\n                <svg class=\"luna-icon\" aria-hidden=\"true\">\n                    <use xlink:href=\"#chevron-down\" data-accordion-icon=\"show\"><\/use>\n                    <use xlink:href=\"#chevron-up\" data-accordion-icon=\"hide\" class=\"is-hidden\"><\/use>\n                <\/svg>\n            <\/button>\n        <\/h4>\n    <\/div>\n    <div class=\"luna-accordion__details collapse\" aria-hidden=\"true\" id=\"faq-builder-0000000003\" data-accordion=\"details\">\n        <div class=\"accordionContent\">\n            <div>\n                <p>This depends on your monthly income and debts. Generally, people should spend less than 15-20% of their take-home pay on car-related expenses.<\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/li>\n<li class=\"luna-accordion\" data-accordion=\"accordion\">\n    <div class=\"luna-accordion__summary\">\n        <h4 class=\"luna-accordion__heading\">\n            <button class=\"luna-accordion__action collapsed\" aria-expanded=\"false\" aria-controls=\"faq-builder-0000000004\" data-toggle=\"collapse\" data-target=\"#faq-builder-0000000004\">\n                <span class=\"luna-accordion__title\">Is it smart to do a 72-month car loan?<\/span>\n                <svg class=\"luna-icon\" aria-hidden=\"true\">\n                    <use xlink:href=\"#chevron-down\" data-accordion-icon=\"show\"><\/use>\n                    <use xlink:href=\"#chevron-up\" data-accordion-icon=\"hide\" class=\"is-hidden\"><\/use>\n                <\/svg>\n            <\/button>\n        <\/h4>\n    <\/div>\n    <div class=\"luna-accordion__details collapse\" aria-hidden=\"true\" id=\"faq-builder-0000000004\" data-accordion=\"details\">\n        <div class=\"accordionContent\">\n            <div>\n                <p>Generally, it's better to avoid 72-month loan terms because you'll pay more interest overall.<\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/li>\n\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>Use this car loan payment calculator to find out your potential monthly payments.<\/p>\n","protected":false},"author":1000,"featured_media":768037,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"car loan payment calculator","_yoast_wpseo_title":"Car Loan Monthly Payment Calculator | Finder Canada","_yoast_wpseo_metadesc":"Use our car loan payment calculator to figure out the cost of your car payments. Find out what you can afford and compare car loans.","_yoast_wpseo_meta-robots-noindex":"","_yoast_wpseo_meta-robots-nofollow":"","_yoast_wpseo_canonical":"","_yoast_wpseo_opengraph-title":"","_yoast_wpseo_opengraph-description":"","_yoast_wpseo_opengraph-image":"","_yoast_wpseo_opengraph-image-id":"","apple_news_api_created_at":"","apple_news_api_id":"","apple_news_api_modified_at":"","apple_news_api_revision":"","apple_news_api_share_url":"","apple_news_cover_media_provider":"image","apple_news_coverimage":0,"apple_news_coverimage_caption":"","apple_news_cover_video_id":0,"apple_news_cover_video_url":"","apple_news_cover_embedwebvideo_url":"","apple_news_is_hidden":"","apple_news_is_paid":"","apple_news_is_preview":"","apple_news_is_sponsored":"","apple_news_maturity_rating":"","apple_news_metadata":"\"\"","apple_news_pullquote":"","apple_news_pullquote_position":"","apple_news_slug":"","apple_news_sections":[],"apple_news_suppress_video_url":false,"apple_news_use_image_component":false,"post_is_fact_checked":"false","post_co_author":"685","post_co_author_date":"2026-06-25T12:28:21","post_co_author_manual_date_checked":"false","post_reviewer":"-1","post_reviewer_date":"","post_reviewer_manual_date_checked":"false","post_editor":"-1","post_editor_date":null,"post_author_date":"2026-06-25T11:52:01","post_author_manual_date_checked":"false","_last_updated_date_data":"{\"is_updated_date_published\":true,\"last_updated_date\":\"2026-06-25 16:28:24\",\"timezone_offset\":\" +00:00\",\"last_update_summary\":\"We updated the calculator.\"}","_last_major_update":"{\"isOn\":false,\"date\":\"14\/01\/2020\"}","feature_finder_bot_teaser_enabled":false,"feature_finder_bot_teaser_message":"","feature_finder_bot_teaser_placeholder":"","feature_finder_bot_teaser_suggestions":"","footnotes":"","_yoast_wpseo_twitter-title":"","_yoast_wpseo_twitter-description":"","_yoast_wpseo_twitter-image":"","_yoast_wpseo_twitter-image-id":""},"categories":[5831],"tags":[],"asset_tag":[],"class_list":["post-768032","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-car-loans"],"apple_news_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.6 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Car Loan Monthly Payment Calculator | Finder Canada<\/title>\n<meta name=\"description\" content=\"Use our car loan payment calculator to figure out the cost of your car payments. Find out what you can afford and compare car loans.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Car Loan Calculator\" \/>\n<meta property=\"og:description\" content=\"Use our car loan payment calculator to figure out the cost of your car payments. Find out what you can afford and compare car loans.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator\" \/>\n<meta property=\"og:site_name\" content=\"Finder Canada\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-15T16:57:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2019\/03\/shutterstock_6138504981.png\" \/>\n\t<meta property=\"og:image:width\" content=\"250\" \/>\n\t<meta property=\"og:image:height\" content=\"250\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Leanne Escobal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Leanne Escobal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator\"},\"author\":[{\"name\":\"Leanne Escobal\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#\\\/schema\\\/person\\\/9d47eeda06b879b07a813536f2068c72\"},{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#\\\/schema\\\/person\\\/784654a651a2874261e8007614422c55\"}],\"headline\":\"Car Loan Calculator\",\"datePublished\":\"2020-01-15T16:57:50+00:00\",\"dateModified\":\"2026-06-25T12:28:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator\"},\"wordCount\":824,\"publisher\":{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cdn.finder.com.au\\\/finder-us\\\/wp-uploads\\\/sites\\\/5\\\/2019\\\/03\\\/shutterstock_6138504981.png\",\"articleSection\":[\"Car Loans\"],\"inLanguage\":{\"@type\":\"Language\",\"name\":\"English\",\"alternateName\":\"en\"},\"commentCount\":0},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator\",\"url\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator\",\"name\":\"Car Loan Monthly Payment Calculator | Finder Canada\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cdn.finder.com.au\\\/finder-us\\\/wp-uploads\\\/sites\\\/5\\\/2019\\\/03\\\/shutterstock_6138504981.png\",\"datePublished\":\"2020-01-15T16:57:50+00:00\",\"dateModified\":\"2026-06-25T12:28:24+00:00\",\"description\":\"Use our car loan payment calculator to figure out the cost of your car payments. Find out what you can afford and compare car loans.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator#primaryimage\",\"url\":\"https:\\\/\\\/cdn.finder.com.au\\\/finder-us\\\/wp-uploads\\\/sites\\\/5\\\/2019\\\/03\\\/shutterstock_6138504981.png\",\"contentUrl\":\"https:\\\/\\\/cdn.finder.com.au\\\/finder-us\\\/wp-uploads\\\/sites\\\/5\\\/2019\\\/03\\\/shutterstock_6138504981.png\",\"width\":250,\"height\":250,\"caption\":\"A woman's hand typing on a calculator\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\\\/car-loan-monthly-payment-calculator#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"CA\",\"item\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Car Loans\",\"item\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/car-loans\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Car Loan Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#website\",\"url\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/\",\"name\":\"Finder Canada\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#organization\",\"name\":\"Finder\",\"url\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.finder.com\\\/finder-us\\\/wp-uploads\\\/sites\\\/5\\\/2025\\\/05\\\/Finder-Logo-696x696-1.png\",\"contentUrl\":\"https:\\\/\\\/www.finder.com\\\/finder-us\\\/wp-uploads\\\/sites\\\/5\\\/2025\\\/05\\\/Finder-Logo-696x696-1.png\",\"width\":1392,\"height\":1392,\"caption\":\"Finder\"},\"image\":{\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/en.wikipedia.org\\\/wiki\\\/Finder_(website)\"],\"description\":\"Every month more than 2 million unique visitors turn to Finder to save money and time, and to make important life choices. We compare everything from bank accounts, personal loans, investing platforms and much more.\",\"email\":\"heythere@finder.com\",\"legalName\":\"Finder\",\"foundingDate\":\"2006-01-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"51\",\"maxValue\":\"200\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#\\\/schema\\\/person\\\/9d47eeda06b879b07a813536f2068c72\",\"name\":\"Leanne Escobal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cdn.finder.com.au\\\/finder-us\\\/wp-uploads\\\/2025\\\/12\\\/LeanneEscobalF1_Finder_600x600.png\",\"url\":\"https:\\\/\\\/cdn.finder.com.au\\\/finder-us\\\/wp-uploads\\\/2025\\\/12\\\/LeanneEscobalF1_Finder_600x600.png\",\"contentUrl\":\"https:\\\/\\\/cdn.finder.com.au\\\/finder-us\\\/wp-uploads\\\/2025\\\/12\\\/LeanneEscobalF1_Finder_600x600.png\",\"caption\":\"Leanne Escobal\"},\"description\":\"Leanne Escobal is a senior publisher at Finder with more than 13 years of experience in financial products and services, with a focus on content strategy and marketing. She has completed the Canadian Securities Course (CSC\u00ae) as well as the Personal Lending and Mortgages course through the Canadian Securities Institute. Leanne holds a Bachelor of Arts (Honours) in English literature and creative writing from Western University.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/leanne-escobal\\\/\"],\"url\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/author\\\/leanneescobal\",\"jobTitle\":\"Senior Publisher\",\"knowsAbout\":[{\"@type\":\"Thing\",\"name\":\"Personal Loans\"},{\"@type\":\"Thing\",\"name\":\"Car Loans\"},{\"@type\":\"Thing\",\"name\":\"Business Loans\"},{\"@type\":\"Thing\",\"name\":\"Short-Term Loans\"},{\"@type\":\"Thing\",\"name\":\"International Money Transfers\"},{\"@type\":\"Thing\",\"name\":\"Make Money Online\"}],\"worksFor\":{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#organization\",\"name\":\"Finder\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#\\\/schema\\\/person\\\/784654a651a2874261e8007614422c55\",\"name\":\"Stacie Hurst\",\"description\":\"Stacie Hurst is an editor at Finder, specializing in loans, banking, investing and money transfers. She has a Bachelor of Arts in Psychology and Writing, and she has completed FP Canada Institute's Financial Management Course. Before working in the publishing industry, Stacie completed one year of law school in the United States. When not working, she can usually be found watching K-dramas or playing games with her friends and family.\",\"jobTitle\":\"Associate editor\",\"url\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/author\\\/staciehurst\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/stacie-hurst\"],\"knowsAbout\":[{\"@type\":\"Thing\",\"name\":\"Banking\"},{\"@type\":\"Thing\",\"name\":\"Stock Trading\"},{\"@type\":\"Thing\",\"name\":\"Cryptocurrency\"},{\"@type\":\"Thing\",\"name\":\"Personal Loans\"},{\"@type\":\"Thing\",\"name\":\"Car Loans\"},{\"@type\":\"Thing\",\"name\":\"Credit Cards\"}],\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cdn.finder.com.au\\\/finder-us\\\/wp-uploads\\\/2025\\\/11\\\/StacieHurstF1_Finder_600x600.pngcfe62ed08078867c09b416e0c53c05a0\",\"url\":\"https:\\\/\\\/cdn.finder.com.au\\\/finder-us\\\/wp-uploads\\\/2025\\\/11\\\/StacieHurstF1_Finder_600x600.png\",\"contentUrl\":\"https:\\\/\\\/cdn.finder.com.au\\\/finder-us\\\/wp-uploads\\\/2025\\\/11\\\/StacieHurstF1_Finder_600x600.png\",\"caption\":\"Stacie Hurst\"},\"worksFor\":{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.finder.com\\\/ca\\\/#organization\",\"name\":\"Finder\"}},{\"@context\":\"https:\\\/\\\/schema.org\",\"@type\":\"FAQPage\",\"name\":\"Frequently Asked Questions\",\"mainEntity\":[{\"@type\":\"Question\",\"name\":\"Is $400 a lot for a car payment?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"\\r\\rThis depends on your monthly income and debts. Generally, people should spend less than 15-20% of their take-home pay on car-related expenses.\\r\\r\"}},{\"@type\":\"Question\",\"name\":\"Is it smart to do a 72-month car loan?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"\\r\\rGenerally, it's better to avoid 72-month loan terms because you'll pay more interest overall.\\r\\r\"}}]}]}<\/script>\n<meta property=\"article:modified_time\" content=\"2026-06-25T12:28:24+00:00\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Car Loan Monthly Payment Calculator | Finder Canada","description":"Use our car loan payment calculator to figure out the cost of your car payments. Find out what you can afford and compare car loans.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator","og_locale":"en_US","og_type":"article","og_title":"Car Loan Calculator","og_description":"Use our car loan payment calculator to figure out the cost of your car payments. Find out what you can afford and compare car loans.","og_url":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator","og_site_name":"Finder Canada","article_published_time":"2020-01-15T16:57:50+00:00","og_image":[{"width":250,"height":250,"url":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2019\/03\/shutterstock_6138504981.png","type":"image\/png"}],"author":"Leanne Escobal","twitter_misc":{"Written by":"Leanne Escobal","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator#article","isPartOf":{"@id":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator"},"author":[{"name":"Leanne Escobal","@id":"https:\/\/www.finder.com\/ca\/#\/schema\/person\/9d47eeda06b879b07a813536f2068c72"},{"@id":"https:\/\/www.finder.com\/ca\/#\/schema\/person\/784654a651a2874261e8007614422c55"}],"headline":"Car Loan Calculator","datePublished":"2020-01-15T16:57:50+00:00","dateModified":"2026-06-25T12:28:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator"},"wordCount":824,"publisher":{"@id":"https:\/\/www.finder.com\/ca\/#organization"},"image":{"@id":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator#primaryimage"},"thumbnailUrl":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2019\/03\/shutterstock_6138504981.png","articleSection":["Car Loans"],"inLanguage":{"@type":"Language","name":"English","alternateName":"en"},"commentCount":0},{"@type":"WebPage","@id":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator","url":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator","name":"Car Loan Monthly Payment Calculator | Finder Canada","isPartOf":{"@id":"https:\/\/www.finder.com\/ca\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator#primaryimage"},"image":{"@id":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator#primaryimage"},"thumbnailUrl":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2019\/03\/shutterstock_6138504981.png","datePublished":"2020-01-15T16:57:50+00:00","dateModified":"2026-06-25T12:28:24+00:00","description":"Use our car loan payment calculator to figure out the cost of your car payments. Find out what you can afford and compare car loans.","breadcrumb":{"@id":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator#primaryimage","url":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2019\/03\/shutterstock_6138504981.png","contentUrl":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2019\/03\/shutterstock_6138504981.png","width":250,"height":250,"caption":"A woman's hand typing on a calculator"},{"@type":"BreadcrumbList","@id":"https:\/\/www.finder.com\/ca\/car-loans\/car-loan-monthly-payment-calculator#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"CA","item":"https:\/\/www.finder.com\/ca\/"},{"@type":"ListItem","position":2,"name":"Car Loans","item":"https:\/\/www.finder.com\/ca\/car-loans"},{"@type":"ListItem","position":3,"name":"Car Loan Calculator"}]},{"@type":"WebSite","@id":"https:\/\/www.finder.com\/ca\/#website","url":"https:\/\/www.finder.com\/ca\/","name":"Finder Canada","description":"","publisher":{"@id":"https:\/\/www.finder.com\/ca\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.finder.com\/ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.finder.com\/ca\/#organization","name":"Finder","url":"https:\/\/www.finder.com\/ca\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.finder.com\/ca\/#\/schema\/logo\/image\/","url":"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/05\/Finder-Logo-696x696-1.png","contentUrl":"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/05\/Finder-Logo-696x696-1.png","width":1392,"height":1392,"caption":"Finder"},"image":{"@id":"https:\/\/www.finder.com\/ca\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/en.wikipedia.org\/wiki\/Finder_(website)"],"description":"Every month more than 2 million unique visitors turn to Finder to save money and time, and to make important life choices. We compare everything from bank accounts, personal loans, investing platforms and much more.","email":"heythere@finder.com","legalName":"Finder","foundingDate":"2006-01-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"51","maxValue":"200"}},{"@type":"Person","@id":"https:\/\/www.finder.com\/ca\/#\/schema\/person\/9d47eeda06b879b07a813536f2068c72","name":"Leanne Escobal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/2025\/12\/LeanneEscobalF1_Finder_600x600.png","url":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/2025\/12\/LeanneEscobalF1_Finder_600x600.png","contentUrl":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/2025\/12\/LeanneEscobalF1_Finder_600x600.png","caption":"Leanne Escobal"},"description":"Leanne Escobal is a senior publisher at Finder with more than 13 years of experience in financial products and services, with a focus on content strategy and marketing. She has completed the Canadian Securities Course (CSC\u00ae) as well as the Personal Lending and Mortgages course through the Canadian Securities Institute. Leanne holds a Bachelor of Arts (Honours) in English literature and creative writing from Western University.","sameAs":["https:\/\/www.linkedin.com\/in\/leanne-escobal\/"],"url":"https:\/\/www.finder.com\/ca\/author\/leanneescobal","jobTitle":"Senior Publisher","knowsAbout":[{"@type":"Thing","name":"Personal Loans"},{"@type":"Thing","name":"Car Loans"},{"@type":"Thing","name":"Business Loans"},{"@type":"Thing","name":"Short-Term Loans"},{"@type":"Thing","name":"International Money Transfers"},{"@type":"Thing","name":"Make Money Online"}],"worksFor":{"@type":"Organization","@id":"https:\/\/www.finder.com\/ca\/#organization","name":"Finder"}},{"@type":"Person","@id":"https:\/\/www.finder.com\/ca\/#\/schema\/person\/784654a651a2874261e8007614422c55","name":"Stacie Hurst","description":"Stacie Hurst is an editor at Finder, specializing in loans, banking, investing and money transfers. She has a Bachelor of Arts in Psychology and Writing, and she has completed FP Canada Institute's Financial Management Course. Before working in the publishing industry, Stacie completed one year of law school in the United States. When not working, she can usually be found watching K-dramas or playing games with her friends and family.","jobTitle":"Associate editor","url":"https:\/\/www.finder.com\/ca\/author\/staciehurst","sameAs":["https:\/\/www.linkedin.com\/in\/stacie-hurst"],"knowsAbout":[{"@type":"Thing","name":"Banking"},{"@type":"Thing","name":"Stock Trading"},{"@type":"Thing","name":"Cryptocurrency"},{"@type":"Thing","name":"Personal Loans"},{"@type":"Thing","name":"Car Loans"},{"@type":"Thing","name":"Credit Cards"}],"image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/2025\/11\/StacieHurstF1_Finder_600x600.pngcfe62ed08078867c09b416e0c53c05a0","url":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/2025\/11\/StacieHurstF1_Finder_600x600.png","contentUrl":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/2025\/11\/StacieHurstF1_Finder_600x600.png","caption":"Stacie Hurst"},"worksFor":{"@type":"Organization","@id":"https:\/\/www.finder.com\/ca\/#organization","name":"Finder"}},{"@context":"https:\/\/schema.org","@type":"FAQPage","name":"Frequently Asked Questions","mainEntity":[{"@type":"Question","name":"Is $400 a lot for a car payment?","acceptedAnswer":{"@type":"Answer","text":"\r\rThis depends on your monthly income and debts. Generally, people should spend less than 15-20% of their take-home pay on car-related expenses.\r\r"}},{"@type":"Question","name":"Is it smart to do a 72-month car loan?","acceptedAnswer":{"@type":"Answer","text":"\r\rGenerally, it's better to avoid 72-month loan terms because you'll pay more interest overall.\r\r"}}]}]},"article_modified_time":"2026-06-25T12:28:24+00:00"},"custom_fields":{"show_author_box":["Yes"],"_content_type":["niche-content\/information\/calculator"],"_masthead_variant":["{\"id\":\"standard-blue\",\"showFeaturedImage\":false,\"presetId\":\"\",\"shouldUsePrimaryCTAFieldName\":false,\"shouldUseSecondaryCTAFieldName\":false,\"primaryCTA\":null,\"secondaryCTA\":null,\"widgetShortcode\":\"\",\"widgetHeading\":\"\",\"widgetStats\":\"\",\"hasPrioritizedWidget\":false,\"hasMaximizedWidget\":false,\"shouldUseOverrideCTALabel\":false,\"overrideCTA\":null,\"cleanTopPicks\":\"\",\"tilesMenuId\":\"\"}"],"_masthead_subheading":["{\"text\":\"Calculate your potential car loan monthly, bi-weekly or weekly payments.\"}"],"custom_post_template":["single-masthead-two-column.php"]},"amp_enabled":false,"_links":{"self":[{"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/posts\/768032","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/users\/1000"}],"replies":[{"embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/comments?post=768032"}],"version-history":[{"count":7,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/posts\/768032\/revisions"}],"predecessor-version":[{"id":1080315,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/posts\/768032\/revisions\/1080315"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/media\/768037"}],"wp:attachment":[{"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/media?parent=768032"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/categories?post=768032"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/tags?post=768032"},{"taxonomy":"asset_tag","embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/asset_tag?post=768032"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}