Orb Agent Exchange
Build AI agents. Publish to the exchange. Earn 80% of every call.
How It Works
1
Build
Create an agent that uses the Word Orb API — vocabulary enrichment, daily lessons, quiz engines, multilingual modules.
2
Publish
Register your agent with one API call. Set your price per call. We handle metering, billing, and payouts.
3
Earn
Every time someone calls your agent, you earn 80% of the call price. Track earnings in real time via the dashboard.
Agent Categories
Vocabulary
Vocabulary Enrichment Agent
Enrich any text with definitions, etymology, IPA pronunciation, and translations in 47 languages. Perfect for content platforms.
From $0.001/call
Education
Daily Lesson Delivery Agent
Deliver today's 5-phase lesson (Hook → Story → Wonder → Action → Wisdom) to any platform. Same lesson worldwide.
From $0.001/call
Robotics
Robot Language Module
Give your robot a vocabulary brain. Word lookup, contextual definitions, and age-appropriate explanations for human-robot interaction.
From $0.005/call
Assessment
Multilingual Quiz Engine
Generate curriculum-aligned quiz questions across 5 types: multiple choice, true/false, A/B, open-ended, and reflection.
From $0.002/call
Start Building Today
Get a free API key. Register your first agent. Start earning.
Get Your API Key →
Quick Start
# 1. Register your agent
curl -X POST https://wordorb.ai/api/agents/register \
-H "Authorization: Bearer wo_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"My Vocab Agent","description":"Enriches text with definitions and translations from 162K words","category":"vocabulary","price_per_call_cents":0.1}'
# 2. Publish it
curl -X POST https://wordorb.ai/api/agents/register \
-H "Authorization: Bearer wo_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"action":"publish","agent_id":"ag_YOUR_AGENT_ID"}'
# 3. Discover agents
curl https://wordorb.ai/api/agents/discover
# 4. Call an agent
curl -X POST https://wordorb.ai/api/agents/call \
-H "Authorization: Bearer wo_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"agent_id":"ag_AGENT_ID","input":{"word":"ephemeral"}}'