<?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: Karim Gueye</title>
    <description>The latest articles on DEV Community by Karim Gueye (@karim_gueye_48291b6fc720c).</description>
    <link>https://dev.to/karim_gueye_48291b6fc720c</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%2F1508314%2F2c2ab196-a77b-47c1-ba7a-82b21dbf3cab.png</url>
      <title>DEV Community: Karim Gueye</title>
      <link>https://dev.to/karim_gueye_48291b6fc720c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/karim_gueye_48291b6fc720c"/>
    <language>en</language>
    <item>
      <title>What AI agents actually pay for — data from 74 pay-per-call endpoints</title>
      <dc:creator>Karim Gueye</dc:creator>
      <pubDate>Thu, 09 Jul 2026 13:05:37 +0000</pubDate>
      <link>https://dev.to/karim_gueye_48291b6fc720c/what-ai-agents-actually-pay-for-data-from-74-pay-per-call-endpoints-23m1</link>
      <guid>https://dev.to/karim_gueye_48291b6fc720c/what-ai-agents-actually-pay-for-data-from-74-pay-per-call-endpoints-23m1</guid>
      <description>&lt;p&gt;For the last several months I've run &lt;a href="https://netintel.dev" rel="noopener noreferrer"&gt;NetIntel&lt;/a&gt;, a platform of pay-per-call APIs settled in USDC over &lt;a href="https://x402.org" rel="noopener noreferrer"&gt;x402&lt;/a&gt; — no signup, no API keys, no accounts. An agent hits an endpoint, gets a &lt;code&gt;402 Payment Required&lt;/code&gt;, pays a fraction of a cent, and gets structured data back. That's the whole loop.&lt;/p&gt;

&lt;p&gt;I built a lot of endpoints. Network intelligence, domain forensics, text transforms, a long menu of things I was convinced agents would want.&lt;/p&gt;

&lt;p&gt;Then I looked at what they &lt;em&gt;actually&lt;/em&gt; paid for. The answer wasn't what I expected, and it changed how I build. Here's the data, with the caveats up front so nobody has to dig for them.&lt;/p&gt;

&lt;h2&gt;
  
  
  The setup
&lt;/h2&gt;

&lt;p&gt;Roughly &lt;strong&gt;2,000 paid calls&lt;/strong&gt; (per &lt;a href="https://x402scan.com" rel="noopener noreferrer"&gt;x402scan&lt;/a&gt;, the public x402 analytics tracker) across &lt;strong&gt;74 live endpoints&lt;/strong&gt;, real USDC on Base, over a period of months. This is one platform's data in a young ecosystem — see the caveats at the bottom before you extrapolate. But the shape of it was clear enough that I stopped treating it as noise.&lt;/p&gt;

&lt;h2&gt;
  
  
  Finding 1: revenue is absurdly concentrated
&lt;/h2&gt;

&lt;p&gt;Five endpoints drove &lt;strong&gt;75% of all revenue&lt;/strong&gt;. One of them — a text-to-structure endpoint that takes messy input and returns strict typed JSON — was &lt;strong&gt;40% by itself&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The remaining ~69 endpoints split what was left, and most of them earned close to nothing. Not "underperformed" — nothing. I had spent weeks building endpoints that, in production, no agent ever paid for twice.&lt;/p&gt;

&lt;p&gt;If you've built for agents, sit with that ratio. I had assumed a broad menu was an asset: more surface area, more ways to get discovered, more shots on goal. In practice the breadth was dead weight. The menu didn't compound; five items carried it and the rest were maintenance cost.&lt;/p&gt;

&lt;h2&gt;
  
  
  Finding 2: agents pay to fix text, not for exotic data
&lt;/h2&gt;

&lt;p&gt;The thing that dominated wasn't clever data. It was &lt;strong&gt;transformation&lt;/strong&gt; — turning unstructured text into a schema the agent could act on.&lt;/p&gt;

&lt;p&gt;That reframed the whole product for me. An agent's expensive problem isn't &lt;em&gt;accessing&lt;/em&gt; data; it's &lt;em&gt;trusting the shape&lt;/em&gt; of what it already has. A blob of text it has to parse itself is a liability — it costs tokens, it costs a fragile parsing step, it costs an entire branch of "what if this comes back malformed." Selling it a guaranteed clean structure removes that liability in one call.&lt;/p&gt;

&lt;p&gt;The most valuable thing I sell isn't information. It's the removal of the agent's own uncertainty. That's a different business than "API for X data," and I only saw it by looking at the receipts.&lt;/p&gt;

&lt;h2&gt;
  
  
  Finding 3: volume is not value
&lt;/h2&gt;

&lt;p&gt;The endpoint agents called &lt;em&gt;most often&lt;/em&gt; was not the endpoint that made the &lt;em&gt;most money&lt;/em&gt;. Not close.&lt;/p&gt;

&lt;p&gt;Spend tracked the value of the task completed, not the frequency of the call. High-frequency, low-stakes lookups generated a rounding error. Lower-frequency, high-value transformations generated the revenue. If I'd optimized for call volume — the metric that's easiest to see on a dashboard — I'd have doubled down on exactly the wrong endpoints.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I changed
&lt;/h2&gt;

&lt;p&gt;I killed the breadth instinct. I stopped shipping speculative endpoints to "see if they stick," because now I know what sticking looks like and most of them never will. The plan is depth on the few categories that actually pay: make the winners faster, cheaper, more reliable, and harder to leave, rather than adding a 75th thing nobody asked for.&lt;/p&gt;

&lt;p&gt;Breadth felt like progress because building is satisfying and each new endpoint looked like an asset on the menu. The data says it was mostly a distraction I could afford to build only because it was cheap to build. That's not a strategy — it's a hobby that happens to be adjacent to a business.&lt;/p&gt;

&lt;h2&gt;
  
  
  Caveats (read these before you quote me)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Small sample.&lt;/strong&gt; ~2,000 paid calls is enough to see a shape, not enough to bank a law. Treat this as a directional signal from one operator, not a benchmark.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One platform, one catalog.&lt;/strong&gt; My menu is skewed toward network/domain intelligence and text tools. Your mix would surface different winners. The &lt;em&gt;concentration&lt;/em&gt; pattern may generalize; the &lt;em&gt;specific winner&lt;/em&gt; probably won't.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Early ecosystem.&lt;/strong&gt; A meaningful share of x402 traffic today is experimental and non-commercial. Some of what looks like demand is people kicking tires. I've tried to reason about paid, repeat behavior rather than one-off test calls, but the noise floor is real.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Survivorship in the framing.&lt;/strong&gt; "The other 69 were a distraction" is the lesson I drew, but a few of those may just be early, or badly discovered, rather than genuinely unwanted. I'm betting they're dead weight; I could be wrong about the margins.
None of that changes the headline: in production, agent spend was extreme in its concentration, it favored transformation over raw data, and it ignored call volume entirely. If you're building for this market, I'd plan for a few things carrying everything — and figure out which few as fast as you can.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;I run NetIntel — pay-per-call network and structured-data intelligence for agents over x402. If you're building agents and want to compare notes on what your traffic actually pays for, I'm genuinely interested; that's the data I wish more people published.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>x402</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Built NetIntel: 64 network-intelligence + data tools for AI agents</title>
      <dc:creator>Karim Gueye</dc:creator>
      <pubDate>Sun, 21 Jun 2026 23:45:16 +0000</pubDate>
      <link>https://dev.to/karim_gueye_48291b6fc720c/built-netintel-64-network-intelligence-data-tools-for-ai-agents-4hje</link>
      <guid>https://dev.to/karim_gueye_48291b6fc720c/built-netintel-64-network-intelligence-data-tools-for-ai-agents-4hje</guid>
      <description>&lt;p&gt;Built NetIntel: 64 network-intelligence + data tools for AI agents.&lt;/p&gt;

&lt;p&gt;DNS, SSL, WHOIS, email security, OSINT, structured data extraction — all pay-per-call via x402 on Base. No API keys, no signup. Agents just pay a fraction of a cent and go.&lt;/p&gt;

&lt;p&gt;Live now 👇&lt;br&gt;
github.com/kjgueye/netintel-api&lt;/p&gt;

&lt;p&gt;@CoinbaseDev @x402&lt;/p&gt;

</description>
      <category>ai</category>
      <category>networking</category>
      <category>showdev</category>
      <category>web3</category>
    </item>
  </channel>
</rss>
