Earnings
Monetize your AI agents and apps on elizaOS Cloud.
New
Overview
Earn credits from:
- Agent Usage: Users interact with your published agents
- App Revenue: Third-party apps use your APIs
- Marketplace Sales: Users clone your agent templates
Getting Started
Create an Agent
Build and test your agent using the Agent Creator.
Publish to Marketplace
Set pricing and publish to the elizaOS marketplace.
Track Earnings
Monitor usage and earnings in the dashboard.
Redeem
Convert earned credits to USDC or other currencies.
Publishing Agents
Publish via API
curl -X POST "https://cloud.milady.ai/api/v1/agents/{agentId}/publish" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"visibility": "public",
"pricing": {
"perMessage": 0.001,
"perMinute": 0.01
},
"categories": ["assistant", "productivity"],
"tags": ["research", "analysis"]
}'Pricing Options
| Model | Description |
|---|---|
perMessage | Charge per message sent |
perMinute | Charge per conversation minute |
perSession | Flat fee per session |
subscription | Monthly subscription |
Earnings Dashboard
View earnings at Dashboard → Earnings.
API
curl -X GET "https://cloud.milady.ai/api/v1/redemptions/balance" \
-H "Authorization: Bearer YOUR_API_KEY"{
"available": 1250.0,
"pending": 150.0,
"lifetime": 5000.0,
"breakdown": {
"agents": 4000.0,
"apps": 800.0,
"marketplace": 200.0
}
}Revenue Split
| Source | Your Share | Platform Fee |
|---|---|---|
| Agent Usage | 80% | 20% |
| App Revenue | 85% | 15% |
| Marketplace Sales | 70% | 30% |
Redemptions
Request Redemption
curl -X POST "https://cloud.milady.ai/api/v1/redemptions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"amount": 500,
"method": "usdc",
"address": "0x..."
}'Redemption Methods
| Method | Minimum | Processing Time |
|---|---|---|
| USDC (Base) | 50 credits | 1-3 days |
| USDC (Ethereum) | 100 credits | 1-3 days |
| Bank Transfer | 500 credits | 5-7 days |
Check Status
curl -X GET "https://cloud.milady.ai/api/v1/redemptions/status" \
-H "Authorization: Bearer YOUR_API_KEY"{
"pending": [
{
"id": "red_abc123",
"amount": 500,
"method": "usdc",
"status": "processing",
"createdAt": "2024-01-15T10:30:00Z"
}
]
}Agent Analytics
Track your agent’s performance:
curl -X GET "https://cloud.milady.ai/api/v1/my-agents/characters/{id}/stats" \
-H "Authorization: Bearer YOUR_API_KEY"{
"views": 15000,
"interactions": 5000,
"uniqueUsers": 1200,
"revenue": 450.0,
"rating": 4.7,
"period": "30d"
}Marketplace
Listing Your Agent
Publish to the public marketplace:
{
"visibility": "public",
"listing": {
"title": "Research Assistant Pro",
"description": "Expert AI for academic research...",
"features": ["Literature review", "Data analysis", "Citation formatting"],
"screenshots": ["url1", "url2"],
"demo": true
}
}Clone Pricing
Let users clone your agent template:
{
"cloneSettings": {
"enabled": true,
"price": 50.0,
"includesKnowledge": false
}
}Payouts
Automatic Payouts
Enable automatic monthly payouts:
curl -X POST "https://cloud.milady.ai/api/v1/redemptions/auto" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"enabled": true,
"threshold": 100,
"method": "usdc",
"address": "0x..."
}'Payout History
curl -X GET "https://cloud.milady.ai/api/v1/apps/{appId}/earnings/history" \
-H "Authorization: Bearer YOUR_API_KEY"Tax Information
You may need to provide tax information for payouts above certain thresholds. Check your local regulations.
Best Practices
- Quality First — High-quality agents earn more through better ratings and organic usage
- Clear Pricing — Transparent, competitive pricing builds user trust and conversions
- Good Description — Detailed listings with screenshots and features get more visibility
- Iterate — Update your agent based on user feedback and analytics