---
title: "List all playlists"
method: GET
path: "/v1/playlists"
tags: ["Playlists"]
---

# List all playlists

`GET /v1/playlists`

Returns a list of all playlists for the authenticated user

## Query parameters

- `visibility` 'org' | 'personal' — Visibility: org (shared with entire organization) or personal (only creator)
- `cursor` string — Pagination cursor from previous response
- `limit` integer — Items per page (default: 20, max: 100)

## Response `200`

OK

- object
  - `pagination` Pagination, required — Pagination metadata for list responses. Results are sorted by updatedAt descending.
    - `hasMore` boolean, required — Whether there are more items to fetch
    - `nextCursor` string, nullable, required — Cursor for next page. Pass this value as the 'cursor' query parameter to fetch the next page. Null if no more pages. This is an opaque value - do not decode or modify it.
  - `playlists` PlaylistListItem[], required — List of playlists
    - `createdAt` string, date-time, required — ISO 8601 datetime
    - `description` string, required — Playlist description
    - `emoji` string, required — Unicode emoji character for the playlist
    - `groupId` string, nullable, required — Playlist group this playlist belongs to in the sidebar, or null if ungrouped
    - `id` string, required — Unique playlist identifier
    - `linkScope` 'public' | 'private' | 'password' | 'embedonly', required — Access level: public (anyone with link), private (org members only), password (requires password), embedonly (only viewable when embedded)
    - `links` PlaylistLinks, required — URLs related to a playlist
      - `viewPage` string, uri, required — URL to view the playlist on Tella
    - `name` string, required — Playlist name
    - `searchEngineIndexingEnabled` boolean, required — Whether search engines can index this playlist
    - `updatedAt` string, date-time, required — ISO 8601 datetime
    - `videos` integer, required — Number of videos in the playlist
    - `visibility` 'org' | 'personal', required — Visibility: org (shared with entire organization) or personal (only creator)

## Other responses

- `400` — The request was malformed or contained invalid parameters.
- `401` — Authentication is required. Provide a valid API key.
- `403` — You don't have permission to access this resource.
- `404` — The requested resource was not found.
- `429` — You have exceeded the rate limit. Please slow down.
- `500` — An unexpected error occurred
- `501` — The requested operation is not implemented.

---

[API](https://skmtc.dev/withchima/apis/tella-public-api.md) · [All operations](https://skmtc.dev/withchima/apis/tella-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/withchima/tella-public-api/revisions/ba2bb13928a5/schema)
