<?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: Erik</title>
    <description>The latest articles on DEV Community by Erik (@erik_ds).</description>
    <link>https://dev.to/erik_ds</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4114498%2Fb48fdeb2-37e3-412b-8fc0-38f1e5acd6b4.png</url>
      <title>DEV Community: Erik</title>
      <link>https://dev.to/erik_ds</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/erik_ds"/>
    <language>en</language>
    <item>
      <title>Show Dev: A sub-25ms edge API to stop cold emails from landing in spam</title>
      <dc:creator>Erik</dc:creator>
      <pubDate>Mon, 07 Sep 2026 19:16:22 +0000</pubDate>
      <link>https://dev.to/erik_ds/show-dev-i-built-a-sub-25ms-edge-api-to-stop-cold-emails-from-landing-in-spam-455d</link>
      <guid>https://dev.to/erik_ds/show-dev-i-built-a-sub-25ms-edge-api-to-stop-cold-emails-from-landing-in-spam-455d</guid>
      <description>&lt;p&gt;Hey everyone! Showcasing a new API to solve a real-world problem for cold email outreach: &lt;strong&gt;&lt;a href="https://domainsignal.io" rel="noopener noreferrer"&gt;DomainSignal.io&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Problem I Set Out to Solve
&lt;/h3&gt;

&lt;p&gt;In B2B cold outbound, cross-provider sending is a silent killer. &lt;/p&gt;

&lt;p&gt;When newly provisioned &lt;strong&gt;Google Workspace&lt;/strong&gt; mailboxes blast enterprise &lt;strong&gt;Microsoft 365&lt;/strong&gt; inboxes, Microsoft’s Exchange Online Protection (EOP) flags the traffic as untrusted external outreach. Quarantine rates spike, open rates crash from 40% to under 10%, and secondary sending domains burn out in weeks.&lt;/p&gt;

&lt;p&gt;On top of that, enterprise gateways like Proofpoint automatically detonate click-tracking links, flagging entire sending domains as malicious.&lt;/p&gt;

&lt;p&gt;Legacy data platforms (Apollo, ZoomInfo) try to solve this with web scrapers that look for historical HTML tags or old job postings, but they're slow (800ms–2s), often months out of date, and cost $0.05+ per lookup.&lt;/p&gt;

&lt;h3&gt;
  
  
  What I Built
&lt;/h3&gt;

&lt;p&gt;We built a low-latency edge engine deployed globally across 300+ edge locations that inspects corporate cloud identity and mailbox infrastructure directly at the network layer in &lt;strong&gt;under 25ms&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Instead of scraping website HTML, it runs fast concurrent network probes to determine the true ground-truth infrastructure of any target company.&lt;/p&gt;

&lt;h3&gt;
  
  
  What the API Returns:
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="err"&gt;json&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"domain"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"stripe.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mailbox_infrastructure"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"primary_provider"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Google_Workspace"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"matching_send_recommendation"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Send via Google Mailbox"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"tenant_profile"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"is_active_enterprise"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"sso_vendor"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Okta"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"outbound_guidance"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"link_safety"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"High Risk: Strip Hyperlinks (Proofpoint Active)"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"security_posture"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"dmarc_present"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"dmarc_policy"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"reject"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and more&lt;/p&gt;

&lt;h2&gt;
  
  
  How Outbound Teams Use It
&lt;/h2&gt;

&lt;p&gt;Provider-Matched Routing: Automated sequencers (Instantly, Smartlead) split lead lists before sending, routing Google-to-Google and Outlook-to-M365 to keep sender reputation intact.&lt;/p&gt;

&lt;p&gt;Proofpoint Link-Stripping: If an Email Security Gateway is detected, pipelines automatically strip tracking pixels and links to avoid sandbox detonation.&lt;/p&gt;

&lt;p&gt;Dead Lead Quarantine: If DMARC is missing or the domain has no operational mail server, the lead is quarantined before wasting sender reputation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Looking for Feedback!
&lt;/h2&gt;

&lt;p&gt;👉 &lt;a href="https://domainsignal.io" rel="noopener noreferrer"&gt;DomainSignal.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can test any company domain right on the homepage without signing up.&lt;/p&gt;

&lt;p&gt;Would love brutal feedback from anyone in the API, sales-tech, or SaaS space:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How is the latency in your region?&lt;/li&gt;
&lt;li&gt;    Does the schema give you the exact fields you'd need in an outbound pipeline?&lt;/li&gt;
&lt;li&gt;    What do you think of the pricing?&lt;/li&gt;
&lt;/ul&gt;




</description>
      <category>showdev</category>
      <category>api</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
