---
title: "Get a list of incident events"
method: POST
path: "/api/v2/dora/failures"
tags: ["DORA Metrics"]
---

# Get a list of incident events

`POST /api/v2/dora/failures`

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

## Request body

- DORAListFailuresRequest — Request to get a list of incidents.
  - `data` DORAListFailuresRequestData, required — The JSON:API data.
    - `attributes` DORAListFailuresRequestAttributes, required — Attributes to get a list of incidents.
      - `from` string, date-time — Minimum timestamp for requested events.
      - `limit` integer — Maximum number of events in the response.
      - `query` string — Search query with event platform syntax.
      - `sort` string — Sort order (prefixed with `-` for descending).
      - `to` string, date-time — Maximum timestamp for requested events.
    - `type` 'dora_failures_list_request' — The definition of `DORAListFailuresRequestDataType` object.

## Response `200`

OK

- DORAFailuresListResponse — Response for the list incidents endpoint.
  - `data` DORAIncidentObject[] — The list of DORA incident events.
    - `attributes` DORAIncidentObjectAttributes — The attributes of the incident event.
      - `custom_tags` string[], nullable — A list of user-defined tags. The tags must follow the `key:value` pattern. Up to 100 may be added per event.
      - `env` string — Environment name that was impacted by the incident.
      - `finished_at` string, date-time — The time when the incident finished.
      - `git` DORAGitInfo — Git info for DORA Metrics events.
        - `commit_sha` string, required — Git Commit SHA.
        - `repository_url` string, required — Git Repository URL
      - `name` string — Incident name.
      - `services` string[] — Service names impacted by the incident.
      - `severity` string — Incident severity.
      - `started_at` string, date-time — The time when the incident started.
      - `team` string — Name of the team owning the services impacted.
      - `version` string — Version to correlate with APM Deployment Tracking.
    - `id` string — The ID of the incident event.
    - `type` 'dora_failure' — JSON:API type for DORA incident events.

## Other responses

- `400` — Bad Request
- `403` — Not Authorized
- `429` — Too many requests

---

[API](https://skmtc.net/datadog/apis/api-v2.md) · [All operations](https://skmtc.net/datadog/apis/api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/datadog/api-v2/versions/da68bf029e4c/schema)
