---
title: List maintenance windows
description: Datadog, the leading service for cloud-scale monitoring.
breadcrumbs: Docs > API Reference > Case Management
---

# List maintenance windows{% #list-maintenance-windows %}
Copy pageCopied
{% tab title="v2" %}
**Note**: This endpoint is in preview and is subject to change. If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
| Datadog site      | API endpoint                                                 |
| ----------------- | ------------------------------------------------------------ |
| ap1.datadoghq.com | GET https://api.ap1.datadoghq.com/api/v2/maintenance_windows |
| ap2.datadoghq.com | GET https://api.ap2.datadoghq.com/api/v2/maintenance_windows |
| app.datadoghq.eu  | GET https://api.datadoghq.eu/api/v2/maintenance_windows      |
| app.ddog-gov.com  | GET https://api.ddog-gov.com/api/v2/maintenance_windows      |
| us2.ddog-gov.com  | GET https://api.us2.ddog-gov.com/api/v2/maintenance_windows  |
| app.datadoghq.com | GET https://api.datadoghq.com/api/v2/maintenance_windows     |
| us3.datadoghq.com | GET https://api.us3.datadoghq.com/api/v2/maintenance_windows |
| us5.datadoghq.com | GET https://api.us5.datadoghq.com/api/v2/maintenance_windows |

### Overview

Returns all configured maintenance windows for event management cases. Maintenance windows define time periods during which case notifications and automation rules are suppressed for cases matching a given query.

OAuth apps require the `event_correlation_config_read` authorization [scope](https://docs.datadoghq.com/api/latest/scopes.md#case-management) to access this endpoint.



### Response

{% tab title="200" %}
OK
{% tab title="Model" %}
Response containing a list of maintenance windows.

| Parent field | Field                        | Type      | Description                                                                                                                                         |
| ------------ | ---------------------------- | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
|              | data [*required*]       | [object]  | List of maintenance windows.                                                                                                                        |
| data         | attributes [*required*] | object    | Attributes of a maintenance window, including its schedule and the query that determines which cases are affected.                                  |
| attributes   | created_by                   | string    | The UUID of the user who created this maintenance window. Read-only.                                                                                |
| attributes   | end_at [*required*]     | date-time | The ISO 8601 timestamp when the maintenance window ends and normal notification behavior resumes.                                                   |
| attributes   | name [*required*]       | string    | A human-readable name for the maintenance window (for example, `Database migration - Dec 15`).                                                      |
| attributes   | query [*required*]      | string    | A case search query that determines which cases are affected during the maintenance window. Uses the same syntax as the Case Management search bar. |
| attributes   | start_at [*required*]   | date-time | The ISO 8601 timestamp when the maintenance window begins and notifications start being suppressed.                                                 |
| attributes   | updated_by                   | string    | The UUID of the user who last modified this maintenance window. Read-only.                                                                          |
| data         | id [*required*]         | string    | The maintenance window's identifier.                                                                                                                |
| data         | type [*required*]       | enum      | JSON:API resource type for maintenance windows. Allowed enum values: `maintenance_window`                                                           |

{% /tab %}

{% tab title="Example" %}

```json
{
  "data": [
    {
      "attributes": {
        "created_by": "string",
        "end_at": "2026-06-01T06:00:00Z",
        "name": "Weekly maintenance",
        "query": "project:SEC",
        "start_at": "2026-06-01T00:00:00Z",
        "updated_by": "string"
      },
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "type": "maintenance_window"
    }
  ]
}
```

{% /tab %}

{% /tab %}

{% tab title="400" %}
Bad Request
{% tab title="Model" %}
API error response.

| Field                    | Type     | Description       |
| ------------------------ | -------- | ----------------- |
| errors [*required*] | [string] | A list of errors. |

{% /tab %}

{% tab title="Example" %}

```json
{
  "errors": [
    "Bad Request"
  ]
}
```

{% /tab %}

{% /tab %}

{% tab title="401" %}
Unauthorized
{% tab title="Model" %}
API error response.

| Field                    | Type     | Description       |
| ------------------------ | -------- | ----------------- |
| errors [*required*] | [string] | A list of errors. |

{% /tab %}

{% tab title="Example" %}

```json
{
  "errors": [
    "Bad Request"
  ]
}
```

{% /tab %}

{% /tab %}

{% tab title="403" %}
Forbidden
{% tab title="Model" %}
API error response.

| Field                    | Type     | Description       |
| ------------------------ | -------- | ----------------- |
| errors [*required*] | [string] | A list of errors. |

{% /tab %}

{% tab title="Example" %}

```json
{
  "errors": [
    "Bad Request"
  ]
}
```

{% /tab %}

{% /tab %}

{% tab title="404" %}
Not Found
{% tab title="Model" %}
API error response.

| Field                    | Type     | Description       |
| ------------------------ | -------- | ----------------- |
| errors [*required*] | [string] | A list of errors. |

{% /tab %}

{% tab title="Example" %}

```json
{
  "errors": [
    "Bad Request"
  ]
}
```

{% /tab %}

{% /tab %}

{% tab title="429" %}
Too many requests
{% tab title="Model" %}
API error response.

| Field                    | Type     | Description       |
| ------------------------ | -------- | ----------------- |
| errors [*required*] | [string] | A list of errors. |

{% /tab %}

{% tab title="Example" %}

```json
{
  "errors": [
    "Bad Request"
  ]
}
```

{% /tab %}

{% /tab %}

### Code Example

##### 
                  \# Curl command curl -X GET "https://api.datadoghq.com/api/v2/maintenance_windows" \
-H "Accept: application/json" \
-H "DD-API-KEY: ${DD_API_KEY}" \
-H "DD-APPLICATION-KEY: ${DD_APP_KEY}" 
                
{% /tab %}
