<?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: Danilo</title>
    <description>The latest articles on DEV Community by Danilo (@dam84).</description>
    <link>https://dev.to/dam84</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%2F1582012%2F7bdb1669-b94a-4792-8123-d27994d423fe.jpg</url>
      <title>DEV Community: Danilo</title>
      <link>https://dev.to/dam84</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dam84"/>
    <language>en</language>
    <item>
      <title>API Monitoring: Checking uptime vs checking if your response actually works</title>
      <dc:creator>Danilo</dc:creator>
      <pubDate>Sun, 19 Oct 2025 17:34:26 +0000</pubDate>
      <link>https://dev.to/dam84/api-monitoring-checking-uptime-vs-checking-if-your-response-actually-works-3l46</link>
      <guid>https://dev.to/dam84/api-monitoring-checking-uptime-vs-checking-if-your-response-actually-works-3l46</guid>
      <description>&lt;p&gt;Lately, API monitoring has been on my mind. The majority of tools (such as Pingdom and UptimeRobot) only verify that your API is returning a 200 OK.&lt;/p&gt;

&lt;p&gt;However, what if the response structure has changed but your API is returning 200 OK? similar to:&lt;/p&gt;

&lt;p&gt;Prior to:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{
    "user": {
        "name": "John"
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Following:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{
    "user": {
        "full_name": "John"
    }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Monitoring reports are ok and the API returns 200, but your frontend is broken.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Are you on the lookout for this? How?&lt;/li&gt;
&lt;li&gt;Has "breaking changes with 200 OK" ever caused you any pain?&lt;/li&gt;
&lt;li&gt;What equipment do you use? What irritates you?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Currently, it appears that the following options are available: Postman Monitors ($49/user/month; too expensive)&lt;br&gt;
Checkly (nice but complicated)&lt;br&gt;
Create your own scripts.&lt;/p&gt;

&lt;p&gt;Interested in the opinions of the community? Is this actually a problem?&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>webdev</category>
      <category>programming</category>
      <category>api</category>
    </item>
  </channel>
</rss>
