Alerts

List channels

GET
/v1/channels
AuthorizationBearer <token>

API key minted via POST /v1/api-keys (format mk_live_...)

In: header

Response Body

application/json

application/json

curl -X GET "https://api.mentio.dev/v1/channels"
{
  "data": [
    {
      "id": "string",
      "label": "string",
      "stats": {
        "alerts": 0,
        "activeAlerts": 0,
        "lastDeliveryAt": "string",
        "last7d": {
          "total": 0,
          "failed": 0
        }
      },
      "createdAt": "string",
      "kind": "slack",
      "config": {
        "channelId": "string",
        "channelName": "string"
      }
    }
  ]
}
{
  "error": {
    "code": "unauthorized",
    "message": "string",
    "requestId": "string",
    "retryAfterSeconds": 0
  }
}