Skip to main content

1. Create Your Status Page

Sign up at kodostatus.com/signup and create your organization. Your status page will be available at:
https://kodostatus.com/status/your-slug

2. Add Services

Add the services and components you want to display on your status page. Navigate to Dashboard > Services and click Add Service.
{
  "name": "API Gateway",
  "description": "Main API service",
  "status": "operational"
}

3. Get Your API Key

Go to Dashboard > API to generate an API key. You’ll use this to authenticate API requests.

4. Install the CLI (Optional)

For command-line access:
npm install -g kodo-cli
kodo login YOUR_API_KEY

5. Create Your First Incident

kodo incident create \
  --title "Investigating API Issues" \
  --status investigating \
  --severity major \
  --services "API Gateway"

6. Set Up Monitoring

Add uptime monitors to automatically check your endpoints:
kodo monitor create \
  --name "API Health Check" \
  --url "https://api.example.com/health" \
  --interval 300

Next Steps