WayToClawEarn
High impactHacker News + X/Twitter

The founder of OpenClaw burned $130 million OpenAI Tokens in 30 days: the true cost behind the scale of AI Agent

OpenClaw founder Peter Steinberger revealed on X that his AI Agent platform consumed $130 million (approximately 9.4 million yuan) of OpenAI API Token within 30 days. This figure reveals the true cost structure of large-scale operations of AI Agents, and is an important reference for every individual and team building an AI automation system.

WayToClawEarn EditorialPublished May 16, 2026Updated Aug 8, 2026

Editorial review of public sources · AI-assisted drafting. How we work · Original source

Core conclusion

OpenClaw founder @steipete (Peter Steinberger) disclosed the API consumption data of his platform: TOK1__ million OpenAI Tokens were burned in 30 days. This number sparked heated discussion on Hacker News (47 hot posts) because it exposed the cost gap that most people ignore between AI Agents moving from "fun gadgets" to "profitable commercial systems."

Key Points

  • Time of Event: May 16, 2026
  • Affected objects: All individuals and teams who use OpenAI API to build AI Agents, automated workflows, and content production systems
  • Core Signal: The cost of AI Agent's API Token may be much higher than most people expect. $1.3M/month is not "burning money" but "the normal operating cost of the industry's leading players"

Background: Why this number matters

OpenClaw is currently one of the most popular AI Agent platforms on GitHub (100K+ Stars). It allows users to use natural language in the terminal to let AI autonomously complete tasks such as programming, data analysis, and content production. The platform backend uses OpenAI's models (GPT-4o, GPT-5.5, etc.) by default to drive the Agent's reasoning and decision-making.

The set of data posted by founder Peter Steinberger (former founder of PSPDFKit) on

In the past, all we have seen is "what AI Agent can do". This is the first time someone has publicly stated clearly "how much it will cost to achieve this scale."

OpenClaw architecture and API flow

Key impact: Triple signals to the AI Agent ecosystem

DimensionsChangesWhat it meansRecommended actions
Cost$1.3M/month (approximately $43K/ days)After the scale of AI Agent, API cost is the main expenditure itemToken usage monitoring and cost warning mechanism must be established
Business modelUser subscription fee vs API costIf the monthly user fee is $20, 65,000 paying users are needed to cover the API costThe product pricing model must take Token consumption as a core variable
Model selectionHigh dependence on OpenAISingle supplier risk + pricing fluctuation riskEstablish a model routing mechanism, and use low-cost alternatives such as DeepSeek V4 for low-value tasks
Technical optimizationEach Agent call generates multiple Token chainsAgent's "thinking cost" is much higher than a single API callIntroducing Token budget limits and Agent behavior optimization to reduce unnecessary reasoning

Adaptation suggestions: Four steps to control the cost of AI Agent Token

1. Establish Token cost observability

Don’t find out at the end of the month that your bills have exploded. Each Agent task should have independent Token consumption tracking:

Agent → input_tokens/output_tokens → →

2.

OpenClaw GPT-4o/5.5 。

  • DeepSeek V4 — $0.30/M input tokens( GPT-4o 60 )
  • Claude 3.5 Haiku — $1.25/M input tokens
  • ** Qwen3 ** — API ,

3. Agent

Agent ""。 Token

  • Agent max_tokens
  • ()

4.

LLM 。(semantic caching),, 20-40% API 。

DeepSeek OpenAI

terminal

# GPT-5.5 100 input tokens
curl -sS https://api.openai.com/v1/chat/completions   -H "Authorization: Bearer $OPENAI_KEY"   -H "Content-Type: application/json"   -d '{"model":"gpt-5.5","messages":[{"role":"user","content":"..."}]}'

# : $20.00

# DeepSeek V4
curl -sS https://api.deepseek.com/v1/chat/completions   -H "Authorization: Bearer $DEEPSEEK_KEY"   -H "Content-Type: application/json"   -d '{"model":"deepseek-v4","messages":[{"role":"user","content":"..."}]}'

# : $0.30

66 。 $1.3M/ Token , 50% DeepSeek, $640,000+

AI model cost comparison chart

OpenAIGPT-4oDeepSeekClaudeQwen3OpenClawHugging Face. These terms appear naturally in the text, and the platform side will match the maintained tools library and generate tool floating cards.

Related reading

View source →

Disclaimer: this site shares educational insights only, for inspiration and reference. No outcome guarantee; external execution and decisions are your own responsibility.