<?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: Eyvind Barthelemy</title>
    <description>The latest articles on DEV Community by Eyvind Barthelemy (@samedaydesk).</description>
    <link>https://dev.to/samedaydesk</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%2F3999871%2F1a1232e1-1361-49d8-af8b-7682fbe17eae.png</url>
      <title>DEV Community: Eyvind Barthelemy</title>
      <link>https://dev.to/samedaydesk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/samedaydesk"/>
    <language>en</language>
    <item>
      <title>Give your AI agent company + on-chain wallet enrichment in 30 seconds (x402, pay-per-call USDC)</title>
      <dc:creator>Eyvind Barthelemy</dc:creator>
      <pubDate>Thu, 25 Jun 2026 03:34:35 +0000</pubDate>
      <link>https://dev.to/samedaydesk/give-your-ai-agent-company-on-chain-wallet-enrichment-in-30-seconds-x402-pay-per-call-usdc-2g6p</link>
      <guid>https://dev.to/samedaydesk/give-your-ai-agent-company-on-chain-wallet-enrichment-in-30-seconds-x402-pay-per-call-usdc-2g6p</guid>
      <description>&lt;p&gt;If you're building autonomous agents, you've hit this wall: your agent needs to &lt;strong&gt;enrich a company by domain&lt;/strong&gt; or &lt;strong&gt;size up a wallet before it sends funds&lt;/strong&gt;, but every good data source (Clearbit, Apollo, Nansen) is signup- and KYC-gated. An autonomous agent can't click "Sign up," verify an email, and paste an API key.&lt;/p&gt;

&lt;p&gt;So I put a small data gateway behind &lt;strong&gt;x402&lt;/strong&gt; — HTTP 402 + pay-per-call &lt;strong&gt;USDC on Base&lt;/strong&gt;. No account, no API key, no subscription. Your agent does a GET, gets a &lt;code&gt;402&lt;/code&gt; with the price, pays a couple cents of USDC, and replays the request. That's it.&lt;/p&gt;

&lt;h2&gt;
  
  
  30-second install (Claude / Cursor / any MCP agent)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add epistemedeus/x402-data-gateway-skills &lt;span class="nt"&gt;--all&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That drops in &lt;a href="https://github.com/vercel-labs/skills" rel="noopener noreferrer"&gt;Agent Skills&lt;/a&gt; that teach your agent &lt;em&gt;when&lt;/em&gt; to call each endpoint — so "enrich this company" or "profile this wallet" just works.&lt;/p&gt;

&lt;h2&gt;
  
  
  The two I actually built this for
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;company-enrich&lt;/code&gt;&lt;/strong&gt; — a domain → clean firmographics (name, description, tech stack, socials, contact), &lt;strong&gt;plus&lt;/strong&gt; two layers generic enrichment APIs don't return:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;DNS / email-infra (MX, SPF, DMARC — great for outreach validation)&lt;/li&gt;
&lt;li&gt;an &lt;strong&gt;AI-search-readiness&lt;/strong&gt; score (JSON-LD, OpenGraph, robots/sitemap/llms.txt) — "can an AI assistant actually read and cite this site?"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;wallet-enrich&lt;/code&gt;&lt;/strong&gt; — a Base/EVM &lt;code&gt;0x&lt;/code&gt; address → on-chain profile: EOA vs contract, native + token holdings, ERC-20/721/1155 metadata, EIP-1967 proxy detection, activity, and the &lt;strong&gt;Basename&lt;/strong&gt; (e.g. &lt;code&gt;jesse.base.eth&lt;/code&gt;), forward-confirmed so it's never wrong. The crypto-native counterpart for sizing up a counterparty before you transact.&lt;/p&gt;

&lt;h2&gt;
  
  
  Calling it from code (x402-fetch)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;wrapFetchWithPayment&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;x402-fetch&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="c1"&gt;// walletClient = a viem wallet funded with a little USDC on Base&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;fetchPaid&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;wrapFetchWithPayment&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;fetch&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;walletClient&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;res&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;fetchPaid&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://x402-url-extractor-production.up.railway.app/wallet-enrich?address=0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;res&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;());&lt;/span&gt;
&lt;span class="c1"&gt;// -&amp;gt; { type: "contract", contract: { standard: "ERC-20 (token)", token: { symbol: "USDC", ... } }, profile: "token-contract:USDC" }&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Settlement is non-custodial: the facilitator verifies your signed EIP-3009 authorization and the USDC moves straight to the service wallet. Nobody holds your funds.&lt;/p&gt;

&lt;h2&gt;
  
  
  Also exposed as an MCP server
&lt;/h2&gt;

&lt;p&gt;Prefer MCP? The same tools are an x402-gated MCP server (&lt;code&gt;tools/list&lt;/code&gt; is free, &lt;code&gt;tools/call&lt;/code&gt; is paid), listed in the official MCP Registry as &lt;code&gt;io.github.epistemedeus/x402-data-gateway&lt;/code&gt;. &lt;code&gt;tools/list&lt;/code&gt; to see all six; pay-per-call on the ones you use.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's in the gateway
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Skill&lt;/th&gt;
&lt;th&gt;Does&lt;/th&gt;
&lt;th&gt;Price&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;company-enrich&lt;/td&gt;
&lt;td&gt;domain → company intel + AI-readiness + DNS&lt;/td&gt;
&lt;td&gt;$0.02&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;wallet-enrich&lt;/td&gt;
&lt;td&gt;0x address → on-chain profile + Basename&lt;/td&gt;
&lt;td&gt;$0.02&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;web-extract&lt;/td&gt;
&lt;td&gt;URL → structured JSON or LLM-ready Markdown&lt;/td&gt;
&lt;td&gt;$0.05&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;repo-security-scan&lt;/td&gt;
&lt;td&gt;static supply-chain scan of a GitHub repo before you install it&lt;/td&gt;
&lt;td&gt;$0.20&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;schema-generate&lt;/td&gt;
&lt;td&gt;business site → paste-ready JSON-LD bundle&lt;/td&gt;
&lt;td&gt;$0.25&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Public data only, deterministic, pay-per-call. Repo + full docs: &lt;strong&gt;&lt;a href="https://github.com/epistemedeus/x402-data-gateway-skills" rel="noopener noreferrer"&gt;https://github.com/epistemedeus/x402-data-gateway-skills&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you wire it into an agent, I'd genuinely like to hear what task you used it for.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>web3</category>
      <category>opensource</category>
    </item>
    <item>
      <title>I checked the structured data on 61 med-spa sites AI assistants surface. Only 8% have FAQ markup.</title>
      <dc:creator>Eyvind Barthelemy</dc:creator>
      <pubDate>Wed, 24 Jun 2026 19:57:30 +0000</pubDate>
      <link>https://dev.to/samedaydesk/i-checked-the-structured-data-on-61-med-spa-sites-ai-assistants-surface-only-8-have-faq-markup-e7m</link>
      <guid>https://dev.to/samedaydesk/i-checked-the-structured-data-on-61-med-spa-sites-ai-assistants-surface-only-8-have-faq-markup-e7m</guid>
      <description>&lt;p&gt;I run a small AI-search readiness tool, so I got curious about a concrete question: when someone asks ChatGPT or Perplexity "best med spa near me for Botox," what structured data do the businesses that surface actually have?&lt;/p&gt;

&lt;p&gt;So I checked. I took the high-intent queries a real patient would run — "best med spa in [city]", "Botox [city]", "laser hair removal [city]" — across 8 US metros (Austin, Scottsdale, Miami, Dallas, Nashville, Los Angeles, Chicago, Denver), collected the individual-clinic pages that surfaced, fetched each one, and parsed its JSON-LD. 62 clinic URLs, 61 reachable.&lt;/p&gt;

&lt;p&gt;The result surprised me.&lt;/p&gt;

&lt;h2&gt;
  
  
  The basics are common. The quotable fields are not.
&lt;/h2&gt;

&lt;p&gt;Of the 61 reachable clinic pages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;77%&lt;/strong&gt; have &lt;em&gt;some&lt;/em&gt; JSON-LD structured data&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;59%&lt;/strong&gt; have a &lt;code&gt;LocalBusiness&lt;/code&gt; / &lt;code&gt;MedicalBusiness&lt;/code&gt; block&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;59%&lt;/strong&gt; have a &lt;code&gt;telephone&lt;/code&gt;, &lt;strong&gt;57%&lt;/strong&gt; a postal &lt;code&gt;address&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;…but only &lt;strong&gt;31%&lt;/strong&gt; have &lt;code&gt;AggregateRating&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;only &lt;strong&gt;25%&lt;/strong&gt; have &lt;code&gt;priceRange&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;only &lt;strong&gt;11%&lt;/strong&gt; mark up their services (&lt;code&gt;Service&lt;/code&gt; / &lt;code&gt;OfferCatalog&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;only &lt;strong&gt;8%&lt;/strong&gt; have &lt;code&gt;FAQPage&lt;/code&gt; markup&lt;/li&gt;
&lt;li&gt;only &lt;strong&gt;2%&lt;/strong&gt; have &lt;code&gt;Review&lt;/code&gt; markup&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So clinics nail the &lt;em&gt;identity&lt;/em&gt; basics (name, address, phone) and skip the &lt;em&gt;answer-rich&lt;/em&gt; markup — the exact fields an assistant uses to &lt;strong&gt;quote&lt;/strong&gt; a business rather than just list it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why the distinction matters
&lt;/h2&gt;

&lt;p&gt;When an LLM answers a local "best X near me" question, it's assembling facts: which businesses exist, what they offer, what it costs, how they're rated, and what people ask. A page with a bare &lt;code&gt;LocalBusiness&lt;/code&gt; block can be &lt;em&gt;named&lt;/em&gt;. A page that also carries &lt;code&gt;Service&lt;/code&gt; + &lt;code&gt;priceRange&lt;/code&gt;, &lt;code&gt;FAQPage&lt;/code&gt;, and real &lt;code&gt;Review&lt;/code&gt;/&lt;code&gt;AggregateRating&lt;/code&gt; markup gives the model the actual sentences and numbers to cite.&lt;/p&gt;

&lt;p&gt;The data says the second kind of page barely exists in this category. That's not a doom stat — it's the cheapest competitive edge in the space right now, and it's a one-time paste into your &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What "good" looks like
&lt;/h2&gt;

&lt;p&gt;A complete bundle for a local business is a &lt;code&gt;@graph&lt;/code&gt; with the business entity, its services as an &lt;code&gt;OfferCatalog&lt;/code&gt;, an &lt;code&gt;FAQPage&lt;/code&gt;, and real ratings:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"@context"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://schema.org"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"@graph"&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="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"@type"&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="s2"&gt;"MedicalBusiness"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"HealthAndBeautyBusiness"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Example Aesthetics"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"telephone"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"+1-512-555-0100"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"priceRange"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&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;"address"&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;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"PostalAddress"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"addressLocality"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Austin"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"addressRegion"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"TX"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"addressCountry"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"US"&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;"hasOfferCatalog"&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;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"OfferCatalog"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"itemListElement"&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="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Offer"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"itemOffered"&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;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Service"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Botox"&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;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Offer"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"itemOffered"&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;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Service"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Dermal Fillers"&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;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;"aggregateRating"&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;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"AggregateRating"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"ratingValue"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"4.9"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"reviewCount"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"214"&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;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"FAQPage"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"mainEntity"&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="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Question"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"How much does Botox cost?"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
          &lt;/span&gt;&lt;span class="nl"&gt;"acceptedAnswer"&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;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Answer"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"text"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Botox is priced per unit; most treatments range from $10–$18 per unit."&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;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="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;One honest caveat: put your &lt;strong&gt;real&lt;/strong&gt; ratings and reviews in there. The structure is the easy part; fabricated ratings are both against Google's guidelines and pointless.&lt;/p&gt;

&lt;h2&gt;
  
  
  Method + caveats
&lt;/h2&gt;

&lt;p&gt;This is a structured-data census of the &lt;em&gt;surfaced set&lt;/em&gt; — it measures what makes a page &lt;strong&gt;eligible&lt;/strong&gt; to be cited, not a live count of any single engine's citations (I don't have ChatGPT/Perplexity API access at scale, and I'd rather report what I can verify first-party than guess). I excluded aggregators and listicles (Yelp, etc.) from the clinic tally. Full data, the metro list, and the methodology are in the report below. I refresh it monthly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Check your own site
&lt;/h2&gt;

&lt;p&gt;Free, open-source:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx github:epistemedeus/ai-readiness yoursite.com
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Full data + a free starter-block generator (and, if you want the complete bundle generated against your live site with a gap diff, a paid option): &lt;strong&gt;the med-spa AI-citation schema gap report&lt;/strong&gt; — linked as the canonical source below.&lt;/p&gt;

&lt;p&gt;If you've measured this for another vertical, I'd love to compare notes.&lt;/p&gt;

</description>
      <category>seo</category>
      <category>ai</category>
      <category>webdev</category>
      <category>marketing</category>
    </item>
    <item>
      <title>I scanned 136 companies to see if AI search can actually read their sites - the data (and how to fix yours)</title>
      <dc:creator>Eyvind Barthelemy</dc:creator>
      <pubDate>Wed, 24 Jun 2026 06:13:47 +0000</pubDate>
      <link>https://dev.to/samedaydesk/i-scanned-136-companies-to-see-if-ai-search-can-actually-read-their-sites-the-data-and-how-to-3oh</link>
      <guid>https://dev.to/samedaydesk/i-scanned-136-companies-to-see-if-ai-search-can-actually-read-their-sites-the-data-and-how-to-3oh</guid>
      <description>&lt;p&gt;AI answer engines (ChatGPT, Perplexity, Google AI Overviews, Claude) are turning into a real referral source. But they can only cite pages they can actually &lt;strong&gt;crawl and parse&lt;/strong&gt;. So I built a tiny, open-source checker and ran it against the homepages of &lt;strong&gt;136 well-known companies&lt;/strong&gt; across 7 industries to see how AI-ready the web really is.&lt;/p&gt;

&lt;p&gt;The results weren't what I expected.&lt;/p&gt;

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

&lt;p&gt;Each homepage scored 0-100 across six things AI crawlers and answer-engines rely on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;AI-crawler access&lt;/strong&gt; - does &lt;code&gt;robots.txt&lt;/code&gt; allow GPTBot, OAI-SearchBot, PerplexityBot, Google-Extended, ClaudeBot?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Structured data&lt;/strong&gt; - JSON-LD (Organization, WebSite, FAQPage)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Title + meta description&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Open Graph&lt;/strong&gt; tags&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;XML sitemap&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;llms.txt&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The findings
&lt;/h2&gt;

&lt;p&gt;Average score by industry (higher = easier for AI to read):&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Industry&lt;/th&gt;
&lt;th&gt;Avg score&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Marketing agencies&lt;/td&gt;
&lt;td&gt;92&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SaaS&lt;/td&gt;
&lt;td&gt;88&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Dev tools&lt;/td&gt;
&lt;td&gt;86&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;E-commerce&lt;/td&gt;
&lt;td&gt;85&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI startups&lt;/td&gt;
&lt;td&gt;83&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fintech&lt;/td&gt;
&lt;td&gt;74&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Healthtech&lt;/td&gt;
&lt;td&gt;63&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;What jumped out:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Structured data is the #1 gap.&lt;/strong&gt; A large share of sites ship &lt;em&gt;no&lt;/em&gt; Organization or FAQPage JSON-LD - which is exactly the format AI answers like to quote.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Plenty of well-known tech companies score in the C/D range,&lt;/strong&gt; almost always because of missing schema, not anything hard.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The bar is low.&lt;/strong&gt; A deliberate, clean setup puts a tiny site ahead of companies a thousand times its size in how readable it is to AI search.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How to fix yours (copy-paste)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Let the AI crawlers in&lt;/strong&gt; - &lt;code&gt;robots.txt&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User-agent: GPTBot
Allow: /
User-agent: OAI-SearchBot
Allow: /
User-agent: PerplexityBot
Allow: /
User-agent: Google-Extended
Allow: /
User-agent: *
Allow: /
Sitemap: https://yourdomain.com/sitemap.xml
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Tell engines who you are&lt;/strong&gt; - Organization JSON-LD in your &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"application/ld+json"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@context&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://schema.org&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Organization&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;name&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;YOUR COMPANY&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;url&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://yourdomain.com&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;sameAs&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:[&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://www.linkedin.com/company/yourco&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://x.com/yourco&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;]}&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;3. Add FAQPage JSON-LD&lt;/strong&gt; to any page with Q&amp;amp;A - it's the structure AI answers quote most.&lt;/p&gt;

&lt;h2&gt;
  
  
  Check your own site (free, open source)
&lt;/h2&gt;

&lt;p&gt;I open-sourced the checker. No install needed:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx github:epistemedeus/ai-readiness https://yourdomain.com
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It prints a 0-100 score plus the exact gaps and fixes. Browser version (no install): &lt;a href="https://samedaydesk.com/tools/ai-readiness" rel="noopener noreferrer"&gt;https://samedaydesk.com/tools/ai-readiness&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you'd rather grab every template ready to paste (robots.txt, all the JSON-LD, sitemap, meta/OG) in one file, I bundled them into a $9 kit: &lt;a href="https://buy.stripe.com/9B66oI1BEdTV6116oieZ20j" rel="noopener noreferrer"&gt;https://buy.stripe.com/9B66oI1BEdTV6116oieZ20j&lt;/a&gt; - but the free checker plus the snippets above honestly get most sites 80% of the way there.&lt;/p&gt;

&lt;p&gt;What does your site score? The thing that surprised me most: a bunch of &lt;em&gt;AI&lt;/em&gt; companies can't be read by AI. 🤔&lt;/p&gt;

</description>
      <category>ai</category>
      <category>seo</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
