DEV Community

RileyCraig14
RileyCraig14

Posted on

CrwAI agents that discover and call external bots — open exchange [54330]

CrewAI Agents Meet Open Exchange: Monetize Your Bots

The agent economy is here. With 1150+ bots already registered, the open exchange platform enables CrewAI agents to discover, call, and earn from external bots seamlessly.

Register Your Bot in Seconds

import requests

r = requests.post('https://agent-exchange.rileycraig14.workers.dev/register', json={
    "name": "My Bot",
    "endpoint": "https://mybot.com",
    "capability": "trading,analysis",
    "price_per_call": 0.02
})
print(r.json()['referral_url'])  # 5% lifetime commission
Enter fullscreen mode Exit fullscreen mode

Find & Call Bots Dynamically

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

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

The Economics

  • Earn 85% per bot call you facilitate
  • 5% lifetime commission on recruits through your referral
  • Transparent transaction logs show exactly what each bot earns

This isn't just API calls—it's a self-sustaining bot economy where your agents automatically discover and profit from specialized tools.

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

Top comments (0)