---
title: "List projects"
method: GET
path: "/teams/{team_id}/projects"
tags: ["Projects"]
---

# List projects

`GET /teams/{team_id}/projects`

List a page of projects for a team, ordered by descending project ID. Pass
`limit` to set the page size and the `nextCursor` from the previous response
as `cursor` to fetch the next page.

## Path parameters

- `team_id` integer, required

## Query parameters

- `cursor` string
- `limit` integer
- `q` string

## Response `200`

- PlatformPaginatedProjectsResponse
  - `items` ProjectResponse[], required
    - `id` integer, required
    - `name` string, required
    - `slug` string, required
    - `teamId` integer, required
    - `teamSlug` string, required
    - `createTime` integer, required — Timestamp in milliseconds.
    - `prodDeploymentName` string, nullable — The name of the default production deployment for this project, if one exists (e.g. "happy-otter-123").
    - `devDeploymentName` string, nullable — The name of the requesting member's default development deployment for this project, if one exists (an active local deployment or default cloud dev deployment).
  - `pagination` PaginationMetadata, required
    - `hasMore` boolean, required
    - `nextCursor` string, nullable

## Changes

- **2026-07-26** `cfe35d359fba` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/convex/apis/convex-management-api/changes/teams/:team_id/projects/get.md)

---

[API](https://skmtc.dev/convex/apis/convex-management-api.md) · [All operations](https://skmtc.dev/convex/apis/convex-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/convex/convex-management-api/revisions/3dd5e601c536/schema)
