---
title: "List projects for a user"
method: GET
path: "/users/{user_id}/projects"
tags: ["Users"]
---

# List projects for a user

`GET /users/{user_id}/projects`

Fetch a paginated list of projects belonging to a specific user. Use "me" as the user ID to fetch projects for the authenticated user.

## Path parameters

- `user_id` string, required

## Query parameters

- `page` integer
- `limit` integer

## Response `200`

A paginated list of the user's projects

- object
  - `projects` Project[]
    - `id` integer
    - `title` string
    - `description` string
    - `repo_url` string
    - `demo_url` string
    - `readme_url` string
    - `ai_declaration` string
    - `ship_status` string
    - `devlog_ids` integer[]
    - `banner_url` string, nullable
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `pagination` Pagination
    - `current_page` integer
    - `total_pages` integer
    - `total_count` integer
    - `next_page` integer, nullable

## Other responses

- `400` — Invalid request parameters
- `401` — Missing or invalid API key
- `404` — Resource not found
- `429` — Rate limit exceeded

## Changes

> 5 revisions in range; 1 could not be searched.

- **2026-04-01** `c186d7c80b16` — 1 info
  - endpoint added
- **2026-02-28** `cf6ee4e9eef4` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/hackclub/apis/flavortown-api/changes/users/:user_id/projects/get.md)

---

[API](https://skmtc.dev/hackclub/apis/flavortown-api.md) · [All operations](https://skmtc.dev/hackclub/apis/flavortown-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hackclub/flavortown-api/revisions/30b9ad477190/schema)
