My Revenue Is $0.11 After 207 Agents - The Economics of Agent Infrastructure
The Economics of Running 207 Agents
The dashboard showed 207 active agents. They were probing API endpoints, executing workflows, and processing data around the clock. Total revenue generated: $0.11. Total compute cost for the month: significantly more than $0.11.
Where the Money Goes
Running agent infrastructure is expensive in ways that are easy to underestimate:
- LLM API calls - each agent decision requires a call to an LLM. At $3 to $15 per million tokens, 207 agents making decisions every few minutes adds up fast.
- Compute - agents need CPU, memory, and often GPU resources. Even on cheap cloud instances, 207 always-on processes cost real money.
- Storage - agent logs, memory systems, state snapshots, and results all need to be stored somewhere.
- Network - API calls, inter-agent communication, and data transfers have bandwidth costs.
- Monitoring - you need observability tools to track 207 agents, and those tools charge per event or per host.
The Revenue Problem
Most agent infrastructure is cost-center work - it automates tasks that save time but do not directly generate revenue. The $0.11 came from a single successful API arbitrage operation that one agent stumbled into. The other 206 agents did useful work, but none of it had a direct revenue line.
This is the fundamental tension: agents cost money per operation, but most operations do not earn money per operation.
When the Math Works
Agent infrastructure becomes economically viable when:
- You are replacing expensive human labor - if an agent replaces 2 hours of a $50/hour contractor's time daily, the math works even with high API costs
- You batch operations - running 207 agents continuously is wasteful. Run them when there is work, shut them down when there is not.
- You optimize token usage - smaller models for simple decisions, larger models only for complex ones. Most agent decisions do not need the most expensive model.
- You measure cost per outcome, not cost per agent - track what each dollar of compute actually produces
The Honest Accounting
Before scaling your agent fleet, do the math. Calculate cost per successful task completion, not cost per agent. Factor in failed attempts, retries, and idle time. Compare against the alternative - usually a human doing the same work, or not doing it at all.
Sometimes the answer is that 5 well-tuned agents outperform 207 barely-configured ones at a fraction of the cost.
- AI Agent Development Costs Running in Parallel
- LLM Costs Monthly Breakdown for Agents
- Optimized Cron Jobs From $14 to $3 Per Day
Fazm is an open source macOS AI agent. Open source on GitHub.