---
title: "List projects"
method: GET
path: "/projects"
tags: ["API Endpoints"]
---

# List projects

`GET /projects`

List projects accessible to the authenticated user within a drive.

The drive is determined from the access token.

Results are paginated. Use the `cursor` from the response `pagination.next_cursor`
to fetch subsequent pages.

## Query parameters

- `name` string
- `folder_path` string
- `created_by` string
- `created_after` string, date-time
- `created_before` string, date-time
- `updated_after` string, date-time
- `updated_before` string, date-time
- `sort` 'name' | 'created_at' | 'updated_at' | 'last_viewed_at'
- `direction` 'asc' | 'desc'
- `cursor` string
- `limit` integer

## Response `200`

Projects listed successfully

- object
  - `data` object[], required
    - `id` string, uuid, required — Project ID
    - `name` string, required — Project name
    - `created_at` string, date-time, required — When the project was created
    - `updated_at` string, date-time, required — When the project was last updated
    - `folder_path` string — Full folder path for the project (e.g. "Clients/Acme/Videos"). Absent when the project is at the drive root.
  - `pagination` object, required
    - `next_cursor` string — Cursor for the next page. Absent if no more results.

## Other responses

- `401` — Unauthorized - invalid or missing authentication token
- `429` — Too many requests - rate limit exceeded. Use the `Retry-After` header to determine when to retry.

---

[API](https://skmtc.dev/descriptapi/apis/descript-api.md) · [All operations](https://skmtc.dev/descriptapi/apis/descript-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/descriptapi/descript-api/revisions/04c0005aef70/schema)
