67 Baidu AI Endpoints.
One REST API. Pay Per Call.

Access ERNIE-4.5, DeepSeek-R1, OCR, NLP, image generation, protein folding and 60+ more β€” no Baidu account needed.

πŸ›‘οΈ MIT ⚑ 67 endpoints πŸ’° x402 / PayPal / Alipay πŸ”Œ MCP compatible πŸ†“ 5 calls/day free
# No API key needed for free tier
curl https://api.goldbean.io/free/llm/chat \
  -H "Content-Type: application/json" \
  -d '{"messages":[{"role":"user","content":"Hello!"}]}'

# Pay per call with x402/USDC
curl https://api.goldbean.io/paid/ocr \
  -H "Content-Type: application/json" \
  -H "X-PAYMENT: 0x7484b0bca25d2ee56e9b0535572d4cf44a047d98" \
  -d '{"image":"https://example.com/receipt.jpg"}'

# Or use with Claude Desktop via MCP
npx goldbean-mcp

Endpoints by Category

🧠 LLM Chat

ERNIE-4.5, DeepSeek-R1, Qwen3

$0.002/1K tokens

πŸ“ OCR

19 OCR endpoints β€” general, table, formula, handwriting

$0.02/call

πŸ‘οΈ Image Recognition

Object detection, logo, animal, plant, dish

$0.02/call

🎨 Image Gen & Edit

AI image generation and inpainting

$0.05/call

🎬 Video Gen

MuseSteamer video generation + query

$0.10/call

πŸ“Š NLP

Sentiment, keyword extraction, summarization (9 endpoints)

$0.01/call

πŸŽ™οΈ Speech

ASR (speech-to-text) + TTS (text-to-speech)

$0.03/call

🌐 Translation

10 language pairs incl. Chinese↔English/JP/KR/FR/DE

$0.02/call

🧬 Bio-compute

HelixFold protein structure prediction

$0.50/call

Pricing

πŸ†“ Free Tier

5 calls/day/IP β€” no registration

$0

πŸ’³ Pay Per Call

Only pay for what you use

$0.01–$0.50/call

πŸ“… Monthly

Unlimited Basic+Standard, $20 premium quota

$20/month

πŸ“… Quarterly

Unlimited Basic+Standard, $60 premium quota

$60/quarter

πŸ“… Yearly

Unlimited Basic+Standard, $200 premium quota

$200/year

🎁 PH20OFF

20% off all API credits

Limited time
// Install MCP server for Claude Desktop
npm install -g goldbean-mcp

// Add to claude_desktop_config.json
{
  "mcpServers": {
    "goldbean": {
      "command": "npx",
      "args": ["goldbean-mcp"]
    }
  }
}