Documentation

SkillBoss for AI Agents — The Wallet for AI Agents (ASP v0.1)

The wallet for AI agents. 359 public APIs across chat, search, image, video, audio, scraping, email, and business services through one API key.

Zero-signup trial: curl -X POST https://www.skillboss.co/api/try/anonymous-wallet -H "Content-Type: application/json" -d '{}'

You get back a real $0.50 SkillBoss API key instantly. Rate limited to 1 per IP per day.

Quick Start

Install in Claude Code in one line:

claude mcp add skillboss -s user -- npx -y skillboss-mcp-server

Or use the OpenAI-compatible API:

from openai import OpenAI
client = OpenAI(
    base_url="https://api.skillboss.co/v1",
    api_key="sk_your_key"
)
response = client.chat.completions.create(
    model="openai/gpt-5.4",
    messages=[{"role": "user", "content": "Hello!"}]
)

Why Agents Use SkillBoss

CapabilityDetails
359 public APIsChat models, image gen, video gen, audio, web scraping, search, email, databases, hosting
43 vendorsAnthropic, OpenAI, Google, DeepSeek, Perplexity, ElevenLabs, Replicate, Firecrawl, and more
One API keyNo managing multiple vendor accounts
Pay-as-you-goCredits never expire

Two API Patterns

EndpointUse For
/v1/chat/completionsChat / LLM models
/v1/runEverything else (images, video, scraping, email)

Key Models

ModelBest For
openai/gpt-5.4Creative tasks, general reasoning
anthropic/claude-sonnet-4:nitroComplex reasoning, coding
google/gemini-2.5-flashFast, cost-effective tasks
deepseek/deepseek-v3.2Budget-friendly reasoning
firecrawl/scrapeWeb scraping

Discovery Files

Best Practices

  1. Route by task — Use cheap models for simple tasks, powerful models for complex ones
  2. Monitor spend — Query /api/me/usage before expensive operations
  3. Implement fallbacks — If one model returns 503, fall back to another
  4. Use streaming — For chat models, stream responses for better UX
  5. Set max_tokens — Avoid paying for unnecessary output

Get started: skillboss.co/console — $2 free credit for new users!