---
title: "Get Project"
method: GET
path: "/projects/{project_id}"
tags: ["projects"]
---

# Get Project

`GET /projects/{project_id}`

Get a specific project by ID.

Returns the project if the user can see it (team member + visibility check).
Private projects are only visible to the creator.

## Path parameters

- `project_id` string, uuid, required

## Response `200`

Successful Response

- ProjectResponse — Response model for a single project.
  - `id` string, required
  - `user_id` string, required
  - `name` string, required
  - `icon` string
  - `repo` string, nullable
  - `description` string, nullable
  - `active_model_id` string, nullable
  - `tag` string, nullable
  - `observations` string, nullable
  - `example` object, nullable
  - `team_id` string, required
  - `visibility` string
  - `adaptive_cadence` 'off' | 'daily' | 'weekly' | 'monthly' — User-facing cadence preset for autonomous adaptive finetuning runs.
  - `autonomy_enabled` boolean
  - `router_type` string, nullable
  - `routing_params` object
  - `created_at` string, required
  - `updated_at` string, required
  - `selected_model_id` string, nullable, required — Deprecated alias for active_model_id -- kept for backward compat.

## 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)
