---
title: "Get Folders"
method: GET
path: "/api/v1/folders"
tags: ["Folders"]
---

# Get Folders

`GET /api/v1/folders`

Get all folders for a workspace.

This is a paginated endpoint. See the [Pagination guide](#tag/Pagination) for details on using cursor-based pagination.

## Query parameters

- `workspace_id` integer, required — ID of the workspace to list folders for.
- `cursor` string, nullable — An opaque string used as the cursor for pagination. Must be used with the same parameters from the previous request
- `limit` integer — The number of objects to return in a page

## Response `200`

Successful Response

- PaginatedListFolderSyncView
  - `results` FolderSyncView[], required — Objects in the current page of results.
    - `id` string, required — String ID of the folder.
    - `name` string, required — Folder name.
    - `workspace_id` string, required — String ID of the workspace that contains the folder.
    - `default_order` integer, required — Default position of the folder in the workspace.
    - `child_order` integer, required — User-specific position of the folder.
    - `is_deleted` boolean, required — Whether the folder is deleted.
  - `next_cursor` string, nullable, required — Cursor for the next page of results, or `null` when there are no more results.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/todoist/apis/todoist-api.md) · [All operations](https://skmtc.net/todoist/apis/todoist-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/todoist/todoist-api/revisions/69a962f1578f/schema)
