---
title: "Get Mission Runs"
method: GET
path: "/v0/mission_runs"
tags: ["Mission Results"]
---

# Get Mission Runs

`GET /v0/mission_runs`

Search mission runs (single executions of a mission) 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
- `mission_template_uuid` string, uuid — Limit results to a specific mission template ID (UUID)
- `result` 'SUCCESS' | 'VEHICLE_OFFLINE' | 'FAILED_TAKEOFF' | 'ABORT_MANUAL_LAND' | 'ABORT_MANUAL_RETURN_TO_DOCK' | 'ABORT_MANUAL' | 'ABORT_LOST_CONNECTION' | 'ABORT_LOW_BATTERY' | 'ABORT_TOO_DARK' | 'ABORT_AUTONOMOUS' | 'ABORT_AUTONOMOUS' | 'ABORT_API_LAND' | 'FAILED_RETURN' | 'FAILED_WAYPOINT_ACTION' | 'FAILED_WAYPOINT_ACTION' — Limit results to Mission Runs with this result
- `vehicle_serial` string — Limit results to a specific vehicle, by serial number
- `dock_serial` string — Limit results to a specific dock, by serial number
- `started_before` string, date-time — Search for Mission Results started before this timestamp. The timestamp should follow the ISO 8601 standard format.
- `ended_since` string, date-time — Search for Mission Results ended 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 mission runs returned from GET /mission_runs endpoint

- object
  - `data` object, required — List of mission runs returned from GET /mission_runs endpoint
    - `mission_runs` object[], required
      - `dock_serial` string
      - `end_time` string, date-time
      - `flight_id` string
      - `mission_template_uuid` string
      - `result` string, required
      - `start_time` string, date-time
      - `uuid` string, required
      - `vehicle_serial` string
    - `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)
