<?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: Andy Stearman</title>
    <description>The latest articles on DEV Community by Andy Stearman (@andy_stearman_5ab1eaa4db4).</description>
    <link>https://dev.to/andy_stearman_5ab1eaa4db4</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%2F3542742%2F17f73fca-9f1a-4fcb-b411-810997dff77c.png</url>
      <title>DEV Community: Andy Stearman</title>
      <link>https://dev.to/andy_stearman_5ab1eaa4db4</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/andy_stearman_5ab1eaa4db4"/>
    <language>en</language>
    <item>
      <title>Building FathomExporter: From Web Scraping to Official API Partnership</title>
      <dc:creator>Andy Stearman</dc:creator>
      <pubDate>Thu, 02 Oct 2025 13:48:08 +0000</pubDate>
      <link>https://dev.to/andy_stearman_5ab1eaa4db4/building-fathomexporter-from-web-scraping-to-official-api-partnership-339k</link>
      <guid>https://dev.to/andy_stearman_5ab1eaa4db4/building-fathomexporter-from-web-scraping-to-official-api-partnership-339k</guid>
      <description>&lt;p&gt;I built &lt;a href="https://transcriptexport.com" rel="noopener noreferrer"&gt;FathomExporter&lt;/a&gt;, a Chrome extension that bulk exports Fathom meeting transcripts, and recently became an official Fathom partner. Here's the journey from scraping to official API integration.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Fathom (the AI meeting recorder) doesn't have a bulk export feature. Users were manually clicking through hundreds of meetings, copying transcripts one by one. For someone with 500+ meetings, this could take 4-8 hours.&lt;/p&gt;

&lt;h2&gt;
  
  
  Version 1 &amp;amp; 2: Web Scraping
&lt;/h2&gt;

&lt;p&gt;Initially, I built the extension using web scraping. It worked, but had major issues:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Slow:&lt;/strong&gt; Had to navigate through each meeting page sequentially&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fragile:&lt;/strong&gt; Broke whenever Fathom updated their UI&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Limited:&lt;/strong&gt; Required keeping the tab open and active&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For 100 meetings, it took 16 minutes. For 1000 meetings? Over 2 hours.&lt;/p&gt;

&lt;h2&gt;
  
  
  Version 3: Official Partnership
&lt;/h2&gt;

&lt;p&gt;After reaching out to Fathom, they approved FathomExporter as an official partner with OAuth API access. This changed everything:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;10x Faster:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;100 meetings: 16 min → 2 min&lt;/li&gt;
&lt;li&gt;500 meetings: 80 min → 8 min&lt;/li&gt;
&lt;li&gt;1000 meetings: 2+ hours → 20 min&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;More Reliable:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Uses OAuth 2.0 authentication&lt;/li&gt;
&lt;li&gt;Direct API access via &lt;code&gt;/external/v1/meetings&lt;/code&gt; endpoint&lt;/li&gt;
&lt;li&gt;Won't break with UI changes&lt;/li&gt;
&lt;li&gt;Runs completely in background&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Technical Implementation
&lt;/h2&gt;

&lt;p&gt;The OAuth flow uses Chrome's &lt;code&gt;chrome.identity.launchWebAuthFlow()&lt;/code&gt;:&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="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;redirectURL&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;chrome&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;identity&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getRedirectURL&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;oauth&lt;/span&gt;&lt;span class="dl"&gt;'&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;authURL&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;`https://app.fathom.video/oauth/authorize?client_id=&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;CLIENT_ID&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;&amp;amp;redirect_uri=&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;redirectURL&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;&amp;amp;response_type=code`&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="nx"&gt;chrome&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;identity&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;launchWebAuthFlow&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
    &lt;span class="na"&gt;url&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;authURL&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;interactive&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;
&lt;span class="p"&gt;},&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;responseUrl&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&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;code&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;URL&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;responseUrl&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;searchParams&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;code&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="c1"&gt;// Exchange code for access token&lt;/span&gt;
    &lt;span class="c1"&gt;// Store and use for API calls&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The export process respects Fathom's rate limits (60 requests/min) while maximizing throughput.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Learnings
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Reach out to companies:&lt;/strong&gt; I assumed Fathom wouldn't partner with a small Chrome extension. I was wrong. The worst they can say is no.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Official APIs &amp;gt; Scraping:&lt;/strong&gt; Even though scraping "works," the reliability and speed of an official API is worth the effort to get approval.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Performance matters for retention:&lt;/strong&gt; When I cut export time from 2 hours to 20 minutes for 1000 meetings, customer satisfaction went way up.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Partnership credibility sells:&lt;/strong&gt; Being an "Official Fathom Partner" dramatically improved conversion rates compared to "Chrome extension that works with Fathom."&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Results
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;$29 one-time purchase (no subscription)&lt;/li&gt;
&lt;li&gt;25x faster than manual (30 sec per meeting → 1.2 sec per meeting)&lt;/li&gt;
&lt;li&gt;Handles 5000+ meetings without breaking&lt;/li&gt;
&lt;li&gt;Live demo calculator&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://transcriptexport.com" rel="noopener noreferrer"&gt;Try FathomExporter →&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you're building tools on top of other platforms, don't assume you can't get official access. Sometimes you just need to ask.&lt;/p&gt;

</description>
      <category>saas</category>
      <category>webdev</category>
      <category>startup</category>
      <category>nextjs</category>
    </item>
  </channel>
</rss>
