---
title: "List deploys"
method: GET
path: "/services/{serviceId}/deploys"
tags: ["Deploys"]
---

# List deploys

`GET /services/{serviceId}/deploys`

List deploys matching the provided filters. If no filters are provided, all deploys for the service are returned.

## Query parameters

- `status` DeployStatus[]
- `createdBefore` string, date-time
- `createdAfter` string, date-time
- `updatedBefore` string, date-time
- `updatedAfter` string, date-time
- `finishedBefore` string, date-time
- `finishedAfter` string, date-time
- `cursor` string
- `limit` integer — Defaults to 20

## Response `200`

OK

- DeployWithCursor[]
  - `deploy` Deploy
    - `id` string, required
    - `commit` object
      - `id` string
      - `message` string
      - `createdAt` string, date-time
    - `image` object — Image information used when creating the deploy. Not present for Git-backed deploys
      - `ref` string — Image reference used when creating the deploy
      - `sha` string — SHA that the image reference was resolved to when creating the deploy
      - `registryCredential` string — Name of credential used to pull the image, if provided
    - `status` 'created' | 'queued' | 'build_in_progress' | 'update_in_progress' | 'live' | 'deactivated' | 'build_failed' | 'update_failed' | 'canceled' | 'pre_deploy_in_progress' | 'pre_deploy_failed'
    - `trigger` 'api' | 'blueprint_sync' | 'deploy_hook' | 'deployed_by_render' | 'manual' | 'other' | 'new_commit' | 'rollback' | 'service_resumed' | 'service_updated'
    - `startedAt` string, date-time
    - `finishedAt` string, date-time
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
  - `cursor` string

## Other responses

- `401` — Authorization information is missing or invalid.
- `403` — You do not have permissions for the requested resource.
- `404` — Unable to find the requested resource.
- `406` — Unable to generate preferred media types as specified by Accept request header.
- `410` — The requested resource is no longer available.
- `429` — Rate limit has been surpassed.
- `500` — An unexpected server error has occurred.
- `503` — Server currently unavailable.

---

[API](https://skmtc.net/render/apis/render-public-api.md) · [All operations](https://skmtc.net/render/apis/render-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/render/render-public-api/versions/80e0ff74d033/schema)
