For the people building AI agents

Know Your Agent: one call before your agent pays.

Before an AI agent sends money, /transaction vets the counterparty and the wallet and returns proceed / caution / stop — signed and verifiable. Plus 15 more trust and data tools. Pay a few cents in USDC over x402 — no signup, no API key, no subscription. Just call the URL.

⚡ Pay-per-call USDC on Base 🛡️ Trust baked in 🔎 Listed in the Coinbase Bazaar

The toolkit

Every tool returns clean JSON. Point your agent at the URL; it pays the stated price and gets the data.

🛡️ Know Your Agent — the check every paying agent makes

GET /transactionThe pay-safely pre-flight. Before your agent sends money, one call vets the whole deal: is the counterparty site legit AND is the payee wallet safe (OFAC, disposable), weighed against amount vs. policy → proceed / caution / stop + a signed, verifiable attestation. One go/no-go instead of three calls. Start here.$0.25
GET /verifyIs this counterparty safe to trust/pay? verdict (safe/caution/avoid) + domain age + human-vouch$0.01
GET /walletIs this payee wallet safe? OFAC-sanctions screen + on-chain footprint before you send$0.05
GET /approvePolicy sign-off — approve/deny an action against your standing rules, with a signed authorization. Instant, auditable.$2.00
GET /reviewHuman sign-off — a real, named person reviews the action and signs a DYOE TrustReceipt. For the calls where being wrong is expensive. The thing no algorithm can give you.$25.00
GET /intelFull intelligence dossier on any company in ONE call: what they do, trust verdict, domain age, how to reach them, red flags.$0.50
GET /merchantIs this store safe to buy from? trust verdict + cart/returns/payment signals$0.05

📄 Data Extraction

GET /extractClean main text from any page (no nav/ads) — for research agents$0.01
GET /contactsEmails, phones & socials from a website — lead enrichment$0.01
GET /metadataTitle, description, OG image, favicon & canonical$0.01
GET /auditFull site audit — trust, SEO & contactability scored 0-100$0.05

📈 Market & Data Feeds

GET /cryptoLive price + 24h change, market cap & volume for any coin$0.01
GET /marketGlobal crypto overview — total cap, 24h change, BTC/ETH dominance$0.01
GET /trendingThe coins trending right now$0.01
GET /moversTop gainers & losers (24h) across the top 100$0.01
GET /fxCurrency conversion + live exchange rates (ECB)$0.01
GET /weatherCurrent conditions + 3-day forecast for any city$0.01
GET /wikiFactual summary of any topic (Wikipedia) — for research agents$0.01

Integrate in 2 minutes

Any x402 client works. Your agent calls the URL, pays the 402 automatically, gets JSON back.

Try it (returns a 402 with the price)

# the Know Your Agent check — should your agent pay?
curl "https://agents.dyoeway.org/transaction?domain=acme.com&wallet=0x...&amount=500"

Pay automatically (JS, x402-fetch)

import { wrapFetchWithPayment } from "x402-fetch";
import { privateKeyToAccount } from "viem/accounts";

const pay = wrapFetchWithPayment(
  fetch, privateKeyToAccount(process.env.WALLET_KEY));

const r = await pay(
  "https://agents.dyoeway.org/transaction?domain=acme.com&wallet=0x...&amount=500");
const { decision } = await r.json(); // proceed / caution / stop
if (decision !== "proceed") return; // don't send the money

Full machine-readable catalog: /.well-known/x402.json · also discoverable in the Coinbase x402 Bazaar.

Why DYOE

Everyone sells agents data. We sell trusted data.

Our whole toolkit is built on a trust layer nobody else has — domain-age checks, a human-vouch registry, and scam/rug detection fused right into the market intelligence. When your agent acts for a real person, *"is this safe?"* is the question that matters most. That's the one we answer best.