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
| Capability | Details |
|---|---|
| 359 public APIs | Chat models, image gen, video gen, audio, web scraping, search, email, databases, hosting |
| 43 vendors | Anthropic, OpenAI, Google, DeepSeek, Perplexity, ElevenLabs, Replicate, Firecrawl, and more |
| One API key | No managing multiple vendor accounts |
| Pay-as-you-go | Credits never expire |
Two API Patterns
| Endpoint | Use For |
|---|---|
/v1/chat/completions | Chat / LLM models |
/v1/run | Everything else (images, video, scraping, email) |
Key Models
| Model | Best For |
|---|---|
openai/gpt-5.4 | Creative tasks, general reasoning |
anthropic/claude-sonnet-4:nitro | Complex reasoning, coding |
google/gemini-2.5-flash | Fast, cost-effective tasks |
deepseek/deepseek-v3.2 | Budget-friendly reasoning |
firecrawl/scrape | Web scraping |
Discovery Files
llms.txt— skillboss.co/llms.txtagent.json— skillboss.co/agent.jsonopenapi.json— skillboss.co/openapi.json
Best Practices
- Route by task — Use cheap models for simple tasks, powerful models for complex ones
- Monitor spend — Query
/api/me/usagebefore expensive operations - Implement fallbacks — If one model returns 503, fall back to another
- Use streaming — For chat models, stream responses for better UX
- Set max_tokens — Avoid paying for unnecessary output
Get started: skillboss.co/console — $2 free credit for new users!