> ## Documentation Index
> Fetch the complete documentation index at: https://rockboxzig.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List saved playlists, optionally filtered by folder



## OpenAPI

````yaml /api-reference/openapi.json get /saved-playlists
openapi: 3.1.0
info:
  title: Rockbox HTTP API
  version: 1.0.0
  summary: >-
    HTTP REST API for rockboxd — playback, library, playlists, devices,
    settings.
  description: >-
    Rockbox Daemon exposes its full feature surface over HTTP REST on port 6063
    (configurable via `ROCKBOX_TCP_PORT`). It complements the GraphQL API on
    :6062 and the gRPC API on :6061 — all three speak to the same in-process
    state.


    All handlers are defined in `crates/server/src/handlers/` and registered in
    `crates/server/src/lib.rs:run_http_server()`.
  contact:
    name: Rockbox Daemon
    url: https://github.com/tsirysndr/rockboxd
  license:
    name: GPL-2.0
    url: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
servers:
  - url: http://localhost:6063
    description: Default local rockboxd
security: []
tags:
  - name: Albums
  - name: Artists
  - name: Tracks
  - name: Search
  - name: Browse
  - name: Player
  - name: Playlist (queue)
  - name: Saved playlists
  - name: Smart playlists
  - name: Track stats
  - name: Devices
  - name: Settings
  - name: System
  - name: Bluetooth
paths:
  /saved-playlists:
    get:
      tags:
        - Saved playlists
      summary: List saved playlists, optionally filtered by folder
      operationId: listSavedPlaylists
      parameters:
        - name: folder_id
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Saved playlists
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SavedPlaylist'
              example:
                - id: 68920507-2d77-4a89-afae-79626f570ad0
                  name: rap
                  description: null
                  image: null
                  folder_id: null
                  track_count: 1
                  created_at: 1777133688
                  updated_at: 1777135103
components:
  schemas:
    SavedPlaylist:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
          nullable: true
        image:
          type: string
          nullable: true
        folder_id:
          type: string
          nullable: true
        track_count:
          type: integer
          format: int32
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time

````