$5 free credits with GitHub signup

Commerce Infrastructure
for the Agent Economy

DNS for discovery. Stripe for payments. SSL for trust.One API for AI agents to find, pay, and trust each other.

curl — api.agentclear.dev
$ curl -X POST https://api.agentclear.dev/discover \
-H "Authorization: Bearer axk_a1b2c3..." \
-d '{"query": "extract tables from legal PDF"}'
{
"results": [{
"name": "pdf-table-extractor",
"trust_tier": "verified",
"price_per_call": "$0.003",
"relevance_score": 0.94
}, ...]
}

How it works

Three steps. Zero friction.

From intent to API call in under a second. No discovery portals, no contract negotiation, no payment setup.

01

Discover

Agents search by intent. Vector similarity finds the best service match — no browsing, no catalogs.

02

Transact

Pre-funded virtual ledger handles micro-payments instantly. No $0.30 Stripe minimums. Sub-cent transactions.

03

Trust

Every service is scanned for security. Trust scores weight discovery rankings. Agents know what they're calling.

Core Infrastructure

Three pillars of agent commerce

Everything your agents need to discover, pay for, and trust API services — in one platform.

The DNS of agent services

Semantic Discovery Registry

Vector search by intent — not keywords. Agents describe what they need, and we find the best match. Failed searches automatically become bounties, signaling demand to providers.

  • OpenAI embeddings
  • Sub-100ms search
  • Auto-bounty creation
  • Trust-weighted ranking

Stripe for micro-transactions

Pre-Funded Virtual Ledger

$5 promo grant on signup. Off-chain micro-deductions with sub-cent precision. Providers set their own prices. Framework partners earn 40% rev-share on platform fees.

  • $5 promo credits
  • Sub-cent billing
  • Instant settlement
  • 40% framework rev-share

SSL for agent services

Trust & Security Engine

Automated security scanning on every registered service. Three trust tiers — Basic, Verified, Premium — with escalating checks. Trust scores directly influence discovery rankings.

  • Automated scanning
  • Trust badges & tiers
  • Prompt injection checks
  • Premium sandboxing

Developer Experience

Two API calls to production

Discover a service and call it. Or protect your API with one line. That's the entire integration.

CONSUMERDiscover and call a service
consumer.ts
// Consumer: Discover and call a service
const services = await fetch('https://api.agentclear.dev/discover', {
  method: 'POST',
  headers: { 'Authorization': 'Bearer axk_your_key' },
  body: JSON.stringify({
    query: 'extract tables from legal PDF',
    max_results: 5,
    min_trust_tier: 'verified'
  })
});

const { results } = await services.json();
const best = results[0]; // Highest composite score

// Call the service through the proxy
const result = await fetch(
  `https://api.agentclear.dev/proxy/${best.id}`,
  {
    method: 'POST',
    headers: { 'Authorization': 'Bearer axk_your_key' },
    body: JSON.stringify({ pdf_url: 'https://...' })
  }
);
PROVIDERProtect your API with one line
provider.ts
import { requireAgentClear } from '@agentclear/sdk';
import express from 'express';

const app = express();

// One line: authenticate, bill, and log
app.use(requireAgentClear({
  serviceId: 'svc_your_service_id',
  pricePerCall: 0.005
}));

// Your existing API logic — unchanged
app.post('/extract', async (req, res) => {
  const { pdf_url } = req.body;
  const tables = await extractTables(pdf_url);
  res.json({ tables, page_count: tables.length });
});

app.listen(3000);

Growth Engine

Built-in viral loops

Every layer of the platform creates compounding network effects.

$5 Aha! Grant

GitHub signup → instant credits → zero friction to first API call. Developers experience value before spending a cent.

402 Viral Loop

Your API returns 402 Payment Required → links to Agent Clear → your API becomes a distribution channel.

Framework Rev-Share

40% revenue share for LangChain, CrewAI, AutoGen integrations. Frameworks are incentivized to embed us.

Bounty Board

Failed searches become public demand signals. Providers build what's needed. Searchers find it next time.

Live Demand

Bounty Board

What agents are searching for right now.

View all bounties
Query
Searches
Action

Parse DICOM medical images to structured JSON

412

Extract tables from legal PDF documents

387

Real-time sentiment analysis on earnings calls

298

Convert Figma designs to React components

254
Claimed

Validate and enrich B2B contact data

219

Pricing

Pay only for what you use

$0.001 - $1+ per API call. Providers set their own prices. Platform fee is just 2.5%.

Basic

Free

For new providers

  • Uptime monitoring
  • 1.0x discovery boost
  • Basic analytics
Most Popular

Verified

$49/mo

For production services

  • Security scanning
  • Prompt injection checks
  • 99% uptime SLA
  • 1.1x discovery boost
  • Advanced analytics

Premium

$199/mo

For enterprise services

  • All Verified features
  • Code review + signing
  • 1.2x discovery boost
  • Priority support
  • Custom branding
View full pricing details

Works with your favorite agent frameworks

LangChain
CrewAI
AutoGen
Semantic Kernel
LlamaIndex

Ready to build?

Join the agent economy. Get $5 in free credits and start building in minutes.

or
Sign in with GitHub