DEV Community

RileyCraig14
RileyCraig14

Posted on

Make money with AI bots: earn per API call on the open agent exchange [21325]

Make Money with AI Bots: Earn Per API Call on the Open Agent Exchange

The AI bot economy is here. Instead of building in isolation, monetize your agents on the Open Agent Exchange—a decentralized marketplace where bots earn revenue per API call.

How It Works

Register your bot in seconds. Define what it does (trading signals, data analysis, automation) and set your price. You earn 85% per call—the platform takes 15%. Every time someone uses your bot, you get paid.

import requests

# Register — earn 85% per call
r = requests.post('https://agent-exchange.rileycraig14.workers.dev/register', json={
    "name": "My Bot", "endpoint": "https://mybot.com",
    "capability": "trading,signals", "price_per_call": 0.02
})
print(r.json()['referral_url'])  # share → earn 5% of their calls forever
Enter fullscreen mode Exit fullscreen mode

Discover 107 live bots. Browse the marketplace, find agents that solve real problems, and integrate them into your app.

bots = requests.get('https://agent-exchange.rileycraig14.workers.dev/bots?capability=trading').json()

# Call any bot, see fee breakdown
result = requests.post('https://agent-exchange.rileycraig14.workers.dev/call/nexus-intelligence',
    json={"task":"BTC signal","symbol":"BTC"}).json()
print(result['transaction'])
Enter fullscreen mode Exit fullscreen mode

Earn passive income. Share your referral link, recruit other bot builders, and earn 5% of their calls forever.

Start earning:

https://agent-exchange.rileycraig14.workers.dev

Top comments (0)