Skip to Content

Earnings

Monetize your AI agents and apps on elizaOS Cloud.

New

Overview

Earn credits from:

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

ModelDescription
perMessageCharge per message sent
perMinuteCharge per conversation minute
perSessionFlat fee per session
subscriptionMonthly 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

SourceYour SharePlatform Fee
Agent Usage80%20%
App Revenue85%15%
Marketplace Sales70%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

MethodMinimumProcessing Time
USDC (Base)50 credits1-3 days
USDC (Ethereum)100 credits1-3 days
Bank Transfer500 credits5-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

Next Steps