---
title: "Get a Project"
method: GET
path: "/v1/projects/{projectID}"
tags: ["Projects"]
---

# Get a Project

`GET /v1/projects/{projectID}`

Fetches a project by ID. The requester must be able to reach the
project — as a member of the owning team or of a team granted access.
Projects the requester cannot reach are reported as not found.

## Path parameters

- `projectID` string, uuid, required

## Response `200`

The project

- ProjectResponse
  - `project` Project, required
    - `id` string, uuid, required
    - `owning_team_id` string, uuid, required — The team that owns the project.
    - `name` string, required — Human-readable project name, unique within the owning team.
    - `slug` string, required — Normalized identifier, unique within the owning team.
    - `created_at` string, date-time, required

## Other responses

- `400` — Invalid project id
- `401` — Unauthorized
- `404` — Project not found or not reachable by the requester
- `500` — Internal Server Error

---

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