---
title: "Get deploy status"
method: GET
path: "/v1/apps/{app_id}/deploys/{deploy_id}"
tags: ["Apps"]
---

# Get deploy status

`GET /v1/apps/{app_id}/deploys/{deploy_id}`

Check the status of a specific deployment (queued, building, complete, failed).

## Path parameters

- `app_id` string, required
- `deploy_id` string, required — Deploy ID

## Response `200`

Successful Response

- DeployStatusResponse — Status of a specific deploy.
  - `deploy_id` string, required
  - `status` 'queued' | 'building' | 'complete' | 'failed', required
  - `environment` string, nullable
  - `source` string, nullable
  - `bundle_s3_key` string, nullable
  - `message` string, nullable
  - `queued_at` string, nullable
  - `queued_by` string, nullable
  - `error` string, nullable
  - `smoke_test` SmokeTestResult — Result of a post-deploy smoke test.
    - `passed` boolean, required
    - `url` string, required
    - `errors` string[]
    - `duration_ms` integer
    - `tested_at` string, nullable

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

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