{"status":"success","api_base":"https://api.skillboss.co/v1","readme":"# SkillBoss AI API Guide\n\n## Setup\n\nCreate a `.env` file in your project root with your API key:\n\n```\nSKILLBOSS_API_KEY=sk-your-api-key-here\n```\n\n## Finding Models\n\n### Step 1: View available model types\n```\nGET /v1/models\n```\nReturns `available_types` with model counts (e.g., chat: 18, scraper: 32)\n\n### Step 2: Browse models by type\n```\nGET /v1/models?types=chat\nGET /v1/models?types=chat,scraper  (multiple types)\nGET /v1/models?types=all           (all models)\n```\nReturns compact list with id, display_name, description.\nUse description to identify which models you need.\n\n### Step 3: Get full documentation for specific models\n```\nGET /v1/models?ids=openai/gpt-4o,bedrock/claude-4-sonnet\n```\nReturns curl_example, request_doc, response_doc for these models.\n\n## Making Requests\n\nUse the curl_example from Step 3, replace $SKILLBOSS_API_KEY with your API key:\n\n```bash\ncurl -X POST \"https://api.skillboss.co/v1/chat/completions\" \\\n  -H \"Authorization: Bearer $SKILLBOSS_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\": \"openai/gpt-4o\", \"messages\": [{\"role\": \"user\", \"content\": \"Hello\"}]}'\n```\n\n## Notes\n\n- The `types` and `ids` parameters are mutually exclusive\n- Use `types=all` to browse all available models\n- Model IDs follow the format: `vendor/model-name`\n","parameters":{"types":{"description":"Comma-separated model types to filter","values":["all","chat","embedding","image","video","audio","tts","stt","music","sound_generation","ui","design","social","search","scrape","finance","ecommerce","news","email","verify","enrich","document","storage","media","utility","vision","multimodal","classification","ocr","platform","automation","streaming","account","usage","space","http"],"example":"chat,scraper"},"ids":{"description":"Comma-separated model IDs to get full documentation","example":"openai/gpt-4o,bedrock/claude-4-sonnet"}},"available_types":{"email":14,"news":5,"social_data":8,"scraper":19,"storage":36,"embedding":3,"stt":2,"sound_generation":1,"utility":19,"video":19,"automation":64,"scraping":6,"tts":10,"finance":9,"ecommerce":1,"image":28,"ocr":1,"ui":5,"account":5,"chat":49,"media":10,"search":4,"multimodal":1,"document":2,"music":4}}