Skip to main content
GET
/
player
/
next-track
Get the next queued track
curl --request GET \
  --url http://localhost:6063/player/next-track
{
  "path": "<string>",
  "title": "<string>",
  "artist": "<string>",
  "album": "<string>",
  "albumartist": "<string>",
  "composer": "<string>",
  "genre_string": "<string>",
  "tracknum": 123,
  "discnum": 123,
  "year": 123,
  "year_string": "<string>",
  "length": 123,
  "elapsed": 123,
  "filesize": 123,
  "bitrate": 123,
  "frequency": 123,
  "id": "<string>",
  "album_id": "<string>",
  "artist_id": "<string>",
  "genre_id": "<string>",
  "album_art": "<string>"
}

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.

Response

200 - application/json
object | null

Next Mp3Entry, or null if at end of queue

Rockbox firmware-side representation of a playing or queued track

path
string
title
string
artist
string
album
string
albumartist
string
composer
string
genre_string
string
tracknum
integer<int32>
discnum
integer<int32>
year
integer<int32>
year_string
string
length
integer<int64>

Duration in milliseconds

elapsed
integer<int64>

Current position in milliseconds

filesize
integer<int64>
bitrate
integer<int64>
frequency
integer<int64>
id
string | null
album_id
string | null
artist_id
string | null
genre_id
string | null
album_art
string | null