---
title: "List deployment history for a project"
method: GET
path: "/projects/{project_id}/deployments"
tags: ["deployments"]
---

# List deployment history for a project

`GET /projects/{project_id}/deployments`

Return deployment history for a project, newest first.

Args:
    project_id: ID of the project to query.
    limit: Maximum number of records to return (1-100, default 50).
    auth: Authenticated user.

Returns:
    DeploymentHistoryResponse with ordered deployment records.

Raises:
    403: If the user does not have access to the project.

## Path parameters

- `project_id` string, uuid, required

## Query parameters

- `limit` integer

## Response `200`

Successful Response

- DeploymentHistoryResponse — Paginated list of deployment history records. Attributes: deployments: Ordered list of deployment records (newest first).
  - `deployments` DeploymentResponse[], required
    - `id` string, required
    - `project_id` string, required
    - `training_job_id` string, nullable
    - `base_model` string, nullable
    - `deployed_by` string, required
    - `reason` string, nullable, required
    - `deployed_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

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