v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
DORA Metrics

Get a list of incident events

Use this API endpoint to get a list of incident events.

post/api/v2/dora/failures

Request body

Example request

{
  "data": {
    "attributes": {
      "from": "2025-01-01T00:00:00Z",
      "limit": 100,
      "query": "severity:(SEV-1 OR SEV-2) env:production team:backend",
      "sort": "-started_at",
      "to": "2025-01-31T23:59:59Z"
    },
    "type": "dora_failures_list_request"
  }
}

Response

OK

Example response

{
  "data": [
    {
      "attributes": {
        "custom_tags": [
          "incident_type:database",
          "department:engineering"
        ],
        "env": "production",
        "finished_at": "2023-08-31T14:31:14Z",
        "name": "Database outage",
        "services": [
          "shopist"
        ],
        "severity": "SEV-1",
        "started_at": "2023-08-31T14:29:34Z",
        "team": "backend"
      },
      "id": "4242fcdd31586085",
      "type": "dora_incident"
    },
    {
      "attributes": {
        "custom_tags": [
          "incident_type:service_down",
          "department:platform"
        ],
        "env": "production",
        "finished_at": "2023-08-31T14:34:34Z",
        "name": "API service outage",
        "services": [
          "api-service",
          "payment-service"
        ],
        "severity": "SEV-2",
        "started_at": "2023-08-31T14:32:54Z",
        "team": "backend"
      },
      "id": "4242fcdd31586086",
      "type": "dora_incident"
    }
  ]
}