<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Luis Tannous</title>
    <description>The latest articles on DEV Community by Luis Tannous (@luistannous).</description>
    <link>https://dev.to/luistannous</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3953323%2F61e70859-503f-4315-ac01-d09769b56227.png</url>
      <title>DEV Community: Luis Tannous</title>
      <link>https://dev.to/luistannous</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/luistannous"/>
    <language>en</language>
    <item>
      <title>I Built a Free Debt Payoff App - Here's What I Wish I Knew About Personal Finance APIs</title>
      <dc:creator>Luis Tannous</dc:creator>
      <pubDate>Tue, 26 May 2026 23:25:43 +0000</pubDate>
      <link>https://dev.to/luistannous/i-built-a-free-debt-payoff-app-heres-what-i-wish-i-knew-about-personal-finance-apis-1idi</link>
      <guid>https://dev.to/luistannous/i-built-a-free-debt-payoff-app-heres-what-i-wish-i-knew-about-personal-finance-apis-1idi</guid>
      <description>&lt;p&gt;A few months ago, I got tired of juggling multiple spreadsheets to track my debt payoff journey. So I built The Golden Grizzly (thegoldengrizzly.com) — a focused debt management app. Here's what I learned building it, especially around the challenge of connecting to financial data.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem: Most Finance Apps Try to Do Everything
&lt;/h2&gt;

&lt;p&gt;Mint, YNAB, Personal Capital — they're great apps, but they try to be everything: budgeting, investing, net worth tracking, and debt management all in one. The problem? When your main goal is getting out of debt, you need laser focus, not feature bloat.&lt;/p&gt;

&lt;p&gt;I wanted to build something that only does one thing: help you visualize and execute your debt payoff strategy, whether snowball or avalanche.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Tech Stack
&lt;/h2&gt;

&lt;p&gt;The app is built with a modern web stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend&lt;/strong&gt;: React + TypeScript&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend&lt;/strong&gt;: Supabase (PostgreSQL + Auth)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Payments&lt;/strong&gt;: Stripe&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bank connectivity&lt;/strong&gt;: SimpleFIN Bridge&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Hardest Part: Connecting to Bank Data
&lt;/h2&gt;

&lt;p&gt;This is where things get interesting for devs. Most financial APIs (Plaid, MX, Finicity) charge $500+/month for production access. That's a non-starter for a bootstrapped app.&lt;/p&gt;

&lt;p&gt;Enter &lt;strong&gt;SimpleFIN Bridge&lt;/strong&gt; — an open, user-controlled protocol that lets users share their own financial data without giving a third party full access to their accounts. The user sets up a SimpleFIN Bridge access URL themselves, and your app reads from it. It's privacy-preserving and costs pennies.&lt;/p&gt;

&lt;p&gt;The integration looks roughly like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// User provides their SimpleFIN bridge URL&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;fetch&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;simplefinBridgeUrl&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;accounts&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="c1"&gt;// Map accounts to debt objects in your app&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Much simpler than OAuth flows with Plaid, and users understand exactly what they're sharing.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Debt Algorithms
&lt;/h2&gt;

&lt;p&gt;Implementing snowball vs. avalanche was surprisingly fun. Both algorithms take the same inputs (debts with balance, APR, minimum payment) and produce a payoff schedule, but with different ordering:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Snowball&lt;/strong&gt;: Sort by balance ascending, attack smallest first&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Avalanche&lt;/strong&gt;: Sort by APR descending, attack highest interest first&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The visual calendar that shows projected payoff dates ended up being the most-praised feature in user testing.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Free Tier Strategy
&lt;/h2&gt;

&lt;p&gt;I made a deliberate choice: the free plan lets users track up to 3 debts forever. No credit card required, no expiring trial. The paid Gold Member plan ($4.99/month) unlocks unlimited debts, bank sync via SimpleFIN, AI-powered insights, and smart payment reminders.&lt;/p&gt;

&lt;p&gt;The reasoning: most people with serious debt anxiety have more than 3 debts. Letting them start free, see the value, and then upgrade when they're ready to tackle everything has been the right call.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;If you're dealing with debt yourself or building something in the fintech space, check it out at &lt;strong&gt;thegoldengrizzly.com&lt;/strong&gt;. Feedback from devs especially welcome — there's a lot of interesting technical ground to cover in this space.&lt;/p&gt;

&lt;p&gt;Happy to answer questions about the SimpleFIN integration or the debt calculation algorithms in the comments.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
