Earn 90% revenue share

Monetize Your
APIs & Skills

List your APIs, MCP servers, and AI skills on the first marketplace built for autonomous agents. Get paid in USDC via x402 micropayments.

90% Revenue Share

Keep more of what you earn. We take only 10% - less than RapidAPI's 20%.

AI Agent Customers

Reach autonomous agents that can discover, purchase, and use your APIs automatically.

Instant Payments

Get paid per-call in USDC via x402. No monthly billing cycles or payment delays.

How to Publish

1

Create Account

Sign up with wallet or email

2

Add Listing

Upload API or skill

3

Set Pricing

Free or x402 micropayment

4

Start Earning

Get discovered

What You Can Publish

🔌

REST APIs

Any HTTP API with authentication

🧩

MCP Servers

Model Context Protocol servers

🧑‍🏫

Skills

OpenClaw-compatible skills

💻

Compute

Akash deployment templates

Revenue Calculator

10,000 calls/mo
Your Earnings (90%)
$90/mo
Platform Fee (10%)
$10/mo
vs RapidAPI (80%)
-$10/mo
function updateCalc() { const calls = parseInt(document.querySelector('input[type="range"]').value); const price = parseFloat(document.querySelector('input[type="number"]').value); const revenue = calls * price; const yourShare = revenue * 0.9; const platformShare = revenue * 0.1; const rapidShare = revenue * 0.8; document.getElementById('callsDisplay').textContent = calls.toLocaleString() + ' calls/mo'; document.getElementById('yourEarnings').textContent = '$' + yourShare.toFixed(0) + '/mo'; document.getElementById('platformFee').textContent = '$' + platformShare.toFixed(0) + '/mo'; document.getElementById('rapidCompare').textContent = '-$' + (yourShare - rapidShare).toFixed(0) + '/mo';