---
title: "Get Alert History"
method: GET
path: "/v0/alerts_history"
tags: ["Alerts"]
---

# Get Alert History

`GET /v0/alerts_history`

Search mission alerts by various parameters.

## Query parameters

- `flight_id` string, uuid — Limit results to a specific flight ID. ID can be formatted as a full UUID, or can omit `-` characters, and is case insensitive
- `vehicle_serial` string — Limit results to a specific vehicle, by serial number
- `alert_type` 'HUMAN_DETECTED' | 'MISSION_INCOMPLETE' | 'DOCK_ERROR' | 'SCHEDULED_MISSION_FAILED_TAKEOFF' | 'FLIGHT_STATUS' | 'ONLINE_STATUS' | 'MEDIA_FILE_AVAILABLE' | 'MEDIA_AVAILABLE_FOR_SCAN' | 'TELEMETRY_AVAILABLE' | 'WAYPOINT_PROGRESS' | 'LIVE_STREAM_STATUS_CHANGED' — Search for Alerts by Type
- `mission_template_id` string, uuid — Limit results to a specific mission template ID (UUID)
- `alerts_before` string, date-time — Search for Alerts before this timestamp. The timestamp should follow the ISO 8601 standard format.
- `alerts_since` string, date-time — Search for Alerts since this timestamp. The timestamp should follow the ISO 8601 standard format.
- `per_page` integer — Number of results to return per page
- `page_number` integer — Return a specific page number from results

## Response `200`

List of Alerts returned from GET /alerts_history endpoint

- object
  - `data` object, required — List of Alerts returned from GET /alerts_history endpoint
    - `alerts` object[], required
      - `alert_id` string, uuid, required
      - `alert_time` string, date-time, required — DateTime the Alert was triggered
      - `alert_type` 'HUMAN_DETECTED' | 'MISSION_INCOMPLETE' | 'DOCK_ERROR' | 'SCHEDULED_MISSION_FAILED_TAKEOFF' | 'FLIGHT_STATUS' | 'ONLINE_STATUS' | 'MEDIA_FILE_AVAILABLE' | 'MEDIA_AVAILABLE_FOR_SCAN' | 'TELEMETRY_AVAILABLE' | 'WAYPOINT_PROGRESS' | 'LIVE_STREAM_STATUS_CHANGED', required — Type of Alert that was triggered
      - `flight_id` string, uuid — Flight ID of Flight that generated Alert
      - `mission_execution_id` string, uuid — Execution ID of Mission that generated Alert
      - `mission_result` string — Outcome of Mission that generated Alert, if alert_type is MISSION_INCOMPLETE
      - `mission_template_id` string, uuid — Template ID of Mission that generated Alert
      - `vehicle_serial` string — Serial of Vehicle that generated Alert
    - `pagination` object, required
      - `current_page` integer, required — Current page number of results
      - `max_per_page` integer, required — Maximum number of entries per page, could be less for final page
      - `total_pages` integer, required — Total pages of results
  - `error_message` string
  - `meta` object, required
    - `time` number
  - `skydio_error_code` integer, required
  - `status_code` integer, required

---

[API](https://skmtc.net/skydio/apis/skydio-cloud-api.md) · [All operations](https://skmtc.net/skydio/apis/skydio-cloud-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/skydio/skydio-cloud-api/revisions/0f746b116483/schema)
