AI Agents — Start Here: set up skillboss.co/skill.md
SkillBoss
One API key. 679 endpoints. 60 vendors. Zero friction.
SkillBoss is the unified AI services platform for AI coding agents and developers. One API key gives you instant access to every major AI model, image/video generation, web scraping, payments, email, and business APIs — through a single OpenAI-compatible endpoint.
Base URL: https://api.heybossai.com/v1
Auth: Bearer <your_api_key>
SDK: OpenAI SDK (just change base_url)
For AI Agents: SkillBoss is 100% OpenAI-compatible. Set OPENAI_BASE_URL=https://api.heybossai.com/v1 and use your SkillBoss key. See Agent Integration Guide for production patterns.
What You Get
679 API Endpoints
76 chat/LLM models, 45 image generators, 33 video tools, 58 social data APIs, 29 scrapers, and 400+ more across 60 vendors
Every Major AI Model
Claude 4.5, GPT-5, GPT-4.1 Nano, Gemini 2.5, DeepSeek V3, Perplexity Sonar — switch models per request
Media Generation
Images (DALL-E 3, Flux, Imagen 3, Neta Ghibli), Video (Veo 3.1, MiniMax), Audio (ElevenLabs, Whisper)
Business APIs
Stripe payments, SendGrid email, SMS, S3 storage, MongoDB, web scraping, hosting
Quick Start — 3 Steps
Get Your API Key
Sign up at skillboss.co → Download Skills Pack from Console. $2 free credit included, no credit card required.
Install
Tell your AI agent: set up skillboss.co/skill.md
Or set environment variables:
export OPENAI_BASE_URL="https://api.heybossai.com/v1"
export OPENAI_API_KEY="your_skillboss_key"
Use Any Model
from openai import OpenAI
client = OpenAI(
base_url="https://api.heybossai.com/v1",
api_key="your_skillboss_key"
)
response = client.chat.completions.create(
model="claude-4-5-sonnet", # or gpt-5, gemini-2.5-flash, gpt-4.1-nano, etc.
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
Endpoint Categories
| Category | Count | Examples | API Pattern |
|---|---|---|---|
| Chat / LLM | 76 | Claude 4.5, GPT-5, GPT-4.1 Nano, Gemini 2.5, DeepSeek | /v1/chat/completions |
| Image Generation | 45 | DALL-E 3, Flux, Imagen 3, Neta Ghibli | /v1/run |
| Video Generation | 33 | Veo 3.1, MiniMax, WAN | /v1/run |
| Social Data | 58 | Twitter/X, Instagram, LinkedIn, TikTok | /v1/run |
| Web Scraping | 29 | Firecrawl, Linkup, Google Search | /v1/run |
| Audio / Voice | 20 | ElevenLabs TTS, Whisper STT, MiniMax TTS | /v1/run |
| Automation | 69 | Stripe, SendGrid, SMS, Databases | /v1/run |
| Hosting & Storage | 34 | S3, CDN, Static hosting | /v1/run |
| More | 300+ | Embeddings, UI generation, documents, music | /v1/run |
Platform Support
SkillBoss works with every major AI coding tool:
Claude Code
Anthropic's CLI agent
Cursor
AI-first code editor
Windsurf
Codeium's AI IDE
Kiro
AWS's AI coding assistant
Codex CLI
OpenAI's CLI agent
MCP Server
Model Context Protocol
Also: Aider, Cline, Continue, Roo Code, Zed, Replit, Tabnine, Amazon Q, Gemini CLI, Trae, OpenClaw, GitHub Copilot, Antigravity
Why SkillBoss?
| Problem | SkillBoss Solution |
|---|---|
| Managing 10+ API keys | One key for 679 endpoints across 60 vendors |
| Multiple billing accounts | One credit balance — pay-as-you-go, credits never expire |
| Different SDKs per provider | OpenAI-compatible — works with existing code |
| Complex vendor lock-in | Switch models per request — no migration needed |
| Expensive unused subscriptions | Pay only for usage — $2 free credit to start |
For AI Agents
Agent Integration Guide
Complete setup guide for autonomous agents — routing, error handling, cost optimization
Code Examples
Production-ready Python, TypeScript, and cURL examples
Full API Catalog
Browse all 679 endpoints by category
Next Steps
Quickstart Guide
From zero to first API call
Installation Guides
Platform-specific setup for 20+ tools
API Reference
Endpoints, authentication, streaming, errors
Pricing
Transparent per-call pricing for every endpoint
Agent-Readable Discovery:
{
"service": "SkillBoss",
"base_url": "https://api.heybossai.com/v1",
"compatibility": "OpenAI API",
"total_endpoints": 679,
"vendors": 60,
"setup": "set up skillboss.co/skill.md",
"signup": "https://www.skillboss.co/login",
"free_credit": "$2",
"discovery_files": {
"llms_txt": "https://skillboss.co/llms.txt",
"agent_json": "https://skillboss.co/agent.json",
"mcp_manifest": "https://skillboss.co/.well-known/mcp.json",
"openapi": "https://skillboss.co/openapi.json",
"api_catalog": "https://skillboss.co/api-catalog.json"
}
}