---
title: "Get list of all deployments"
method: GET
path: "/v1/deployments"
tags: ["deployment"]
---

# Get list of all deployments

`GET /v1/deployments`

Get list of all deployments for the authenticated user.

## Query parameters

- `limit` integer
- `starting_after` string

## Response `200`

OK

- DeploymentListView
  - `deployments` DeployView[], required — List of projects matching given query.
    - `id` string, required — ID of the deployment.
    - `project_name` string, required — Project name associated with the deployment.
    - `status` 'scheduled' | 'skipped' | 'in_progress' | 'failed' | 'deployed', required
    - `deployed_functions` string[], required — The list of deployed functions.
    - `deploy_start_time_ms` integer, nullable — Time the Deploy was started (Unix timestamp milliseconds).
    - `deploy_end_time_ms` integer, nullable — Time the Deploy completed (Unix timestamp milliseconds).
    - `failure_code` string, nullable — Failure code (generic_failure | git_clone_failure | not_runloop_repo | secrets_failure | provision_failure | runtime_failure). Only set on deploy_failed.
    - `failure_message` string, nullable — Failure message
    - `deploy_commit_sha` string, required — Associated Commit Sha
    - `deploy_commit_time_ms` integer, required — Associated Commit Time
    - `deploy_commit_message` string, required — Associated Commit Message
    - `redeploy_of` string, nullable — ID of original deployment this is redeployment for.
  - `has_more` boolean, required
  - `total_count` integer, required
  - `remaining_count` integer, required

---

[API](https://skmtc.dev/runloopai/apis/runloop-api.md) · [All operations](https://skmtc.dev/runloopai/apis/runloop-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/runloopai/runloop-api/revisions/d1cc15eb5ef9/schema)
