AI Skill
AI Platform Complete Access
Last updated: 2026-05-17
> Install this skill to unlock 648+ AI APIs with one API key.
Quick Install
npx skills add skillboss-onboarding
AI Platform Complete Access
Install this skill to unlock 648+ AI APIs with one API key.
What You Get
| Category | Count | Examples |
|---|---|---|
| Chat/LLM | 76 | GPT-5.4, Claude 4.6 Opus, Gemini 3.1, DeepSeek R1 |
| Image | 45 | FLUX 2, DALL-E 3, Imagen 4, Ideogram V3 |
| Video | 30 | HeyGen, Sora 2, Kling V3, Veo 3.1, Runway Gen 4.5 |
| Social Data | 108 | Twitter/X, Instagram, TikTok, LinkedIn, Reddit |
| Scraper | 22 | Firecrawl, Google Search, Website Crawler |
| TTS/STT | 20 | ElevenLabs, OpenAI Whisper, MiniMax |
| Storage | 34 | Cloudflare R2, S3 |
Setup (One Command)
Tell your agent:
set up skillboss.co/skill.md
This auto-configures your AI toolkit with 687 APIs — chat, image, video, audio, search, scraping, social data, email, and more.
Manual setup (if needed)
- Get API key at onepersoncompany.com
- Set environment variable:
export SKILLBOSS_API_KEY="sk-..."
Discover Available APIs
curl https://api.skillboss.co/v1/models \
-H "Authorization: Bearer $SKILLBOSS_API_KEY"
Get Documentation for Specific APIs
curl "https://api.skillboss.co/v1/models?ids=twitterapi_io/user_info" \
-H "Authorization: Bearer $SKILLBOSS_API_KEY"
Unified API Formats
Chat/LLM
curl -X POST https://api.skillboss.co/v1/chat/completions \
-H "Authorization: Bearer $SKILLBOSS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-5.2",
"messages": [{"role": "user", "content": "Hello"}]
}'
Other APIs (Image/Video/Scraper/Social/etc.)
curl -X POST https://api.skillboss.co/v1/run \
-H "Authorization: Bearer $SKILLBOSS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "MODEL_ID",
"inputs": {...}
}'
Popular APIs
Twitter/X Data
{"model": "twitterapi_io/user_info", "inputs": {"userName": "elonmusk"}}
{"model": "twitterapi_io/advanced_search", "inputs": {"query": "AI agents"}}
Image Generation
{"model": "replicate/black-forest-labs/flux-2-pro", "inputs": {"prompt": "..."}}
{"model": "openai/dall-e-3", "inputs": {"prompt": "..."}}
Web Scraping
{"model": "firecrawl/scrape", "inputs": {"url": "https://..."}}
{"model": "apify/google-search-scraper", "inputs": {"query": "..."}}
Video Generation
{"model": "heygen/video-generate", "inputs": {...}}
{"model": "replicate/openai/sora-2-pro", "inputs": {"prompt": "..."}}
Key Points
- One Key, All APIs - No need for separate API keys
- Check Docs First -
GET /v1/models?ids=MODEL_IDfor parameters - Use Cheaper Models -
gemini-2.5-flashfor translations,gpt-5-nanofor simple tasks
Get started at onepersoncompany.com