# Opsgenie

> Manage incidents and on-call schedules via Opsgenie API. Create alerts and escalations.

- Skill: `modbender/opsgenie` (Agent Skill)
- Install (CLI): `npx skillmds@latest add modbender/opsgenie`
- Raw SKILL.md: https://api.skillmd.com/api/skills/modbender/opsgenie/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: modbender (https://skillmd.com/u/modbender)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/modbender/opsgenie

---

# Opsgenie
Incident management.
## Environment
```bash
export OPSGENIE_API_KEY="xxxxxxxxxx"
```
## Create Alert
```bash
curl -X POST "https://api.opsgenie.com/v2/alerts" \
  -H "Authorization: GenieKey $OPSGENIE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"message": "Server down", "priority": "P1"}'
```
## List Alerts
```bash
curl "https://api.opsgenie.com/v2/alerts" -H "Authorization: GenieKey $OPSGENIE_API_KEY"
```
## Acknowledge Alert
```bash
curl -X POST "https://api.opsgenie.com/v2/alerts/{alertId}/acknowledge" \
  -H "Authorization: GenieKey $OPSGENIE_API_KEY"
```
## Links
- Docs: https://docs.opsgenie.com/docs/api-overview

