---
title: Export Monitor Alerts to CSV
description: >-
  Download monitor alert history as CSV files through hourly monitor data for
  the past 6 months (Datadog US site only).
breadcrumbs: Docs > Monitors > Monitor Guides > Export Monitor Alerts to CSV
---

# Export Monitor Alerts to CSV

Download a history of Monitor Alerts through the [hourly monitor data](https://app.datadoghq.com/report/hourly_data/monitor), which generates a CSV for the past 6 months (182 days). This CSV is **not** live; it is updated once a week on Monday at 11:59AM UTC.

**Notes**:

- This feature is only supported for the Datadog US site.
- You need to be an administrator of your organization to access the CSV file.

{% callout %}
# Important note for users on the following Datadog sites: app.datadoghq.com



To fetch the CSV using curl, use the following:

```shell
api_key=<DATADOG_API_KEY>
app_key=<DATADOG_APPLICATION_KEY>

curl -G \
    "https://app.datadoghq.com/report/hourly_data/monitor" \
    -d "api_key=${api_key}" \
    -d "application_key=${app_key}" \
```

Example response:

```text
hour,host_name,alert_name,user,cnt

2022-10-23 20,example_host_name,"Host name: {{host.name}} Name name: {{name.name}}",<user_email>,67
```


{% /callout %}

{% callout %}
# Important note for users on the following Datadog sites: app.datadoghq.eu, app.ddog-gov.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com

This feature is not supported.
{% /callout %}
