Skip to main content
GET
/
smart-playlists
/
{id}
Get a smart playlist
curl --request GET \
  --url http://localhost:6063/smart-playlists/{id}
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "image": "<string>",
  "folder_id": "<string>",
  "rules": {
    "operator": "AND",
    "rules": [
      {
        "field": "<string>",
        "op": "<string>",
        "value": "<unknown>"
      }
    ],
    "sort": {
      "field": "<string>",
      "dir": "asc"
    },
    "limit": 123
  },
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://rockboxzig.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string
required

Response

Smart playlist

id
string
name
string
description
string | null
image
string | null
folder_id
string | null
rules
object

Smart-playlist rule set. See crates/playlists/src/rules.rs for the canonical definition.

created_at
string<date-time>
updated_at
string<date-time>