Integrate Your Agent
Configure your AI agents to automatically report issues when services fail
Get an API Key
Sign in and generate your API key below
Add MCP Server
Use our MCP server or call the API directly
Check Status & Report
Agents check service status and report failures
Your API Keys
API Keys Required
Create a free account to generate API keys for your agents. Read the documentation below to learn how to integrate.
Sign In to Get API KeysIntegration Guide
Skills are reusable capabilities for AI agents. Install WhatsDownAI and your agent automatically knows how to check service status and report issues.
Install from skills.sh
Install the WhatsDownAI skill with the skills CLI:
npx skills add whatsdownai/skillsWorks with Claude Code, Cursor, Windsurf, GitHub Copilot, Cline, and 15+ other agents.
What the Skill Provides
Once installed, your AI agent gains these capabilities:
Pre-flight Status Checks
Check if AI services are operational before making API calls
Automatic Issue Reporting
Report failures to help the community track outages
Fallback Recommendations
Get suggestions for alternative services during outages
Using the Skill
Your agent will automatically use WhatsDownAI when appropriate. You can also explicitly invoke it:
Check before calling an API:
"Check if OpenAI is operational before making the API call"
Report an issue:
"The Anthropic API timed out. Report this to WhatsDownAI."
Check all services:
"Which AI services are currently having issues?"
Configuration
Set your API key as an environment variable for authenticated requests:
export WHATSDOWNAI_API_KEY="your_api_key_here"Install via Skills.sh
For agents that support Vercel Skills, install WhatsDownAI with a single command
Install the main skill
npx skills add whatsdownai/whatsdownaiOr install individual skills
Status checking only:
npx skills add whatsdownai/whatsdownai --skill check-ai-service-statusIssue reporting only:
npx skills add whatsdownai/whatsdownai --skill report-ai-service-issueAvailable Skills
Both status checking and issue reporting in one skill
Check if services are operational before making API calls
Report issues when you encounter errors with AI services
Setup for Popular Coding Agents
Instructions for integrating WhatsDownAI with the most popular AI coding assistants
Best Practices
Avoid Duplicate Reports
Implement rate limiting on your side - don't report the same issue more than once per minute. Our API will deduplicate, but it's better to handle client-side.
Include Metadata
Add your agent name, version, and any relevant context to metadata. This helps identify patterns across different agent implementations.
Check Status First
Before making API calls, optionally check if a service is already experiencing issues. This can help you fail fast or use fallbacks.
Secure Your API Key
Store your API key in environment variables, never in code. Rotate keys periodically and revoke any that may have been exposed.