---
title: "Get all projects for the authenticated user"
method: GET
path: "/v1/projects"
tags: ["v1 projects"]
---

# Get all projects for the authenticated user

`GET /v1/projects`

Get all projects belonging to the authenticated user.
    
    This endpoint:
    - Returns all projects created by the authenticated user
    - Includes project metadata (name, description, creation date)
    - Projects inherit access to user's preferences, episodes, and identity
    
    **Authentication**: Requires valid API key or JWT token

## Response `200`

Successful Response

- GetUserProjectsResponse — Response model for getting user projects
  - `projects` ProjectResponse[], required — List of projects for the user
    - `project_id` string, required
    - `user_id` string, required
    - `name` string, required
    - `description` string, nullable, required
    - `project_type` string, nullable — Project type override: 'creative_design' or 'general'. When set, skips LLM classification.
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, nullable, required
    - `user_name` string, nullable, required
    - `user_email` string, nullable, required
  - `total_count` integer, required — Total number of projects for the user
  - `user_id` string, required — User ID

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `500` — Internal Server Error

## Changes

- **2026-01-28** `ad860831e524` — 1 info
  - added the optional property `projects/items/project_type` to the response with the `200` status
- **2026-01-21** `1660d0b2cbd9` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/elicitlabs/apis/elicit-labs-api/changes/v1/projects/get.md)

---

[API](https://skmtc.dev/elicitlabs/apis/elicit-labs-api.md) · [All operations](https://skmtc.dev/elicitlabs/apis/elicit-labs-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/elicitlabs/elicit-labs-api/revisions/bb6f89ac9cd3/schema)
