---
title: "Get Projects"
method: GET
path: "/v1/projects"
tags: ["project", "public"]
---

# Get Projects

`GET /v1/projects`

Retrieve a list of projects.

Parameters:
- proj_ids (list[str], optional): A list of project ids. If not provided, all projects will be retrieved.

Returns:
- dict: A dict containing the status message and the list of project names.

## Query parameters

- `proj_ids` string[] — A list of project ids
- `search_term` string — Search term
- `limit` integer
- `offset` integer
- `order_by` 'updated_at' | 'created_at' | 'id' — An enumeration.
- `order` 'asc' | 'desc' — An enumeration.

## Headers

- `API-Version` string — Pass in an API version to guarantee a consistent response format. The latest version should be used for all new API calls. Existing API calls should be updated to the latest version when possible. **Valid versions:** - Latest API version (recommended): `2025-03` - Previous API version (maintenance mode): `2025-02` If no API version header is included, the response format is considered unstable and could change without notice (not recommended).

## Response `200`

Successful Response

- GetProjectsResponse
  - `message` string, required
  - `data` GetProjectsBaseResponse[], required
    - `id` string, required
    - `name` string, required
    - `asset_count` integer, required
    - `transform_count` integer, required
    - `template_id` string
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `408` — Request Timeout
- `422` — Unprocessable Entity
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.dev/runtrellis/apis/trellis.md) · [All operations](https://skmtc.dev/runtrellis/apis/trellis/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/runtrellis/trellis/revisions/b7d8570ff3cc/schema)
