> ## 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 tracks in an album



## OpenAPI

````yaml /api-reference/openapi.json get /albums/{id}/tracks
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:
  /albums/{id}/tracks:
    get:
      tags:
        - Albums
      summary: List tracks in an album
      operationId: getAlbumTracks
      parameters:
        - $ref: '#/components/parameters/IdPath'
      responses:
        '200':
          description: Tracks belonging to the album
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Track'
              example:
                - id: cmodxew97005epdmdvt8ar73r
                  path: >-
                    /Users/tsirysandratraina/Music/J. Cole - 2014 Forest Hills
                    Drive (Explicit)/01. J. Cole - Intro (Explicit).m4a
                  title: Intro
                  artist: J. Cole
                  album: 2014 Forest Hills Drive
                  album_artist: J. Cole
                  bitrate: 320
                  composer: ''
                  disc_number: 1
                  filesize: 5168762
                  frequency: 44100
                  length: 129199
                  track_number: 1
                  year: 2014
                  year_string: '2014-12-09'
                  md5: 07576ce8ea7906aa36bf05ae93cb1643
                  album_art: 216ccc791352fbbffc11268b984db19a.jpg
                  artist_id: cmodw19po0005pdmd6k9mwauv
                  album_id: cmodxew8w0053pdmdmro8vx0w
                  genre_id: ''
                  is_remote: false
                  created_at: 1777096568
                  updated_at: 1777096568
                - id: cmodxew9a005opdmddc5l9y63
                  path: >-
                    /Users/tsirysandratraina/Music/J. Cole - 2014 Forest Hills
                    Drive (Explicit)/02. J. Cole - January 28th (Explicit).m4a
                  title: January 28th
                  artist: J. Cole
                  album: 2014 Forest Hills Drive
                  album_artist: J. Cole
                  bitrate: 320
                  composer: ''
                  disc_number: 1
                  filesize: 9710586
                  frequency: 44100
                  length: 242744
                  track_number: 2
                  year: 2014
                  year_string: '2014-12-09'
                  md5: e6914133fcbcf8771fbf156c485b8459
                  album_art: 216ccc791352fbbffc11268b984db19a.jpg
                  artist_id: cmodw19po0005pdmd6k9mwauv
                  album_id: cmodxew8w0053pdmdmro8vx0w
                  genre_id: ''
                  is_remote: false
                  created_at: 1777096568
                  updated_at: 1777096568
components:
  parameters:
    IdPath:
      name: id
      in: path
      required: true
      schema:
        type: string
  schemas:
    Track:
      type: object
      properties:
        id:
          type: string
        path:
          type: string
        title:
          type: string
        artist:
          type: string
        album:
          type: string
        album_artist:
          type: string
        composer:
          type: string
        genre:
          type: string
          nullable: true
        year:
          type: integer
          format: int64
          nullable: true
        year_string:
          type: string
          nullable: true
        track_number:
          type: integer
          format: int64
          nullable: true
        disc_number:
          type: integer
          format: int64
        length:
          type: integer
          format: int64
          description: Duration in milliseconds
        filesize:
          type: integer
          format: int64
        bitrate:
          type: integer
          format: int64
        frequency:
          type: integer
          format: int64
        album_id:
          type: string
        artist_id:
          type: string
        genre_id:
          type: string
        album_art:
          type: string
          nullable: true
        md5:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time

````