<?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: 3Three</title>
    <description>The latest articles on DEV Community by 3Three (@3three).</description>
    <link>https://dev.to/3three</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%2F3934830%2Ffdf65179-0a26-41b8-a739-d8acd4914fc9.png</url>
      <title>DEV Community: 3Three</title>
      <link>https://dev.to/3three</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/3three"/>
    <language>en</language>
    <item>
      <title>How I Built and Launched 2 Commercial APIs in a Single Day</title>
      <dc:creator>3Three</dc:creator>
      <pubDate>Sat, 16 May 2026 12:49:11 +0000</pubDate>
      <link>https://dev.to/3three/how-i-built-and-launched-2-commercial-apis-in-a-single-day-4o7i</link>
      <guid>https://dev.to/3three/how-i-built-and-launched-2-commercial-apis-in-a-single-day-4o7i</guid>
      <description>&lt;p&gt;I've been seeing developers make money selling APIs on marketplaces like RapidAPI, and I wanted to try it myself. Here's exactly how I went from zero to two live API products in one day.&lt;/p&gt;

&lt;h3&gt;
  
  
  The APIs
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;TextPulse&lt;/strong&gt; — A text analytics API with 7 endpoints:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sentiment analysis with per-sentence breakdown&lt;/li&gt;
&lt;li&gt;Keyword extraction with relevance scoring&lt;/li&gt;
&lt;li&gt;Readability scoring (Flesch Reading Ease + Flesch-Kincaid)&lt;/li&gt;
&lt;li&gt;Named entity extraction (emails, URLs, phones, money, dates)&lt;/li&gt;
&lt;li&gt;Language detection&lt;/li&gt;
&lt;li&gt;Extractive text summarization&lt;/li&gt;
&lt;li&gt;Full analysis (all of the above in one call)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;ShieldCheck&lt;/strong&gt; — A password &amp;amp; security API with 11 endpoints:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Password strength analysis (0-100 scoring with pattern detection)&lt;/li&gt;
&lt;li&gt;Crack time estimation across 5 attack scenarios&lt;/li&gt;
&lt;li&gt;Secure password generation&lt;/li&gt;
&lt;li&gt;Password hashing (SHA-256/512)&lt;/li&gt;
&lt;li&gt;Email validation + disposable domain detection&lt;/li&gt;
&lt;li&gt;Domain breach checking&lt;/li&gt;
&lt;li&gt;TOTP 2FA generation and verification&lt;/li&gt;
&lt;li&gt;Secure token generation&lt;/li&gt;
&lt;li&gt;Shannon entropy calculation&lt;/li&gt;
&lt;li&gt;Full security audit&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Stack
&lt;/h3&gt;

&lt;p&gt;Both APIs use the same simple stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Python + FastAPI&lt;/strong&gt; for the API&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pydantic&lt;/strong&gt; for request/response validation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Railway&lt;/strong&gt; (TextPulse) and &lt;strong&gt;Render&lt;/strong&gt; (ShieldCheck) for hosting&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RapidAPI&lt;/strong&gt; as the marketplace&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt; for version control&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No machine learning libraries. No external API dependencies. No databases (yet). Everything runs as pure Python logic, which keeps deployment simple and responses fast.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Build Process
&lt;/h3&gt;

&lt;p&gt;The actual coding was the fastest part. Each API is a single &lt;code&gt;server.py&lt;/code&gt; file with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Input models (Pydantic)&lt;/li&gt;
&lt;li&gt;Core analysis functions&lt;/li&gt;
&lt;li&gt;API key validation&lt;/li&gt;
&lt;li&gt;FastAPI endpoints&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The time-consuming part was everything else:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Configuring RapidAPI (adding each endpoint, setting media types, writing example bodies)&lt;/li&gt;
&lt;li&gt;Setting up pricing tiers&lt;/li&gt;
&lt;li&gt;Writing documentation&lt;/li&gt;
&lt;li&gt;Testing every endpoint through the marketplace&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Pricing Strategy
&lt;/h3&gt;

&lt;p&gt;I researched competitors on RapidAPI before setting prices. Key insight: most text analytics APIs only do ONE thing (just sentiment, or just keywords). TextPulse bundles 7 features, so I can price below the sum of individual tools while still being competitive.&lt;/p&gt;

&lt;p&gt;Both APIs have 4 tiers: Free (tight limits for testing), Pro (recommended, best value), Ultra, and Mega.&lt;/p&gt;

&lt;h3&gt;
  
  
  What I'd Do Differently
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Start with documentation&lt;/strong&gt; — I wrote it after building, but good docs should be planned alongside the API design&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Test through RapidAPI earlier&lt;/strong&gt; — There were media type configuration issues that only showed up when testing through the marketplace&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pick Python 3.12&lt;/strong&gt; from the start — Python 3.14 had dependency compatibility issues that cost me time&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  What's Next
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Adding Stripe for direct sales (better margins than RapidAPI's 25% cut)&lt;/li&gt;
&lt;li&gt;Building landing pages for both APIs&lt;/li&gt;
&lt;li&gt;Adding more endpoints based on user feedback&lt;/li&gt;
&lt;li&gt;Potentially wrapping an LLM for premium AI-powered endpoints&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you want to try either API, both have free tiers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;TextPulse: &lt;a href="https://rapidapi.com/gagebilliot20/api/textpulse" rel="noopener noreferrer"&gt;https://rapidapi.com/gagebilliot20/api/textpulse&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;ShieldCheck: &lt;a href="https://rapidapi.com/gagebilliot20/api/shieldcheck" rel="noopener noreferrer"&gt;https://rapidapi.com/gagebilliot20/api/shieldcheck&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>api</category>
      <category>python</category>
      <category>fastapi</category>
      <category>sideprojects</category>
    </item>
  </channel>
</rss>
