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

# Get playlist by ID

> Returns a specific playlist by its ID for the authenticated user



## OpenAPI

````yaml /api-reference/oda-media-service-1.0.0.yml get /playlists/{playlistId}
openapi: 3.0.1
info:
  title: oda-media-service
  version: 1.0.0
servers: []
security: []
tags:
  - name: Available Media
    description: Search and retrieve available media from external providers
  - name: Video
    description: Video management operations
  - name: Playlist
    description: Playlist management operations
paths:
  /playlists/{playlistId}:
    get:
      tags:
        - Playlist
      summary: Get playlist by ID
      description: Returns a specific playlist by its ID for the authenticated user
      operationId: playlist
      parameters:
        - name: playlistId
          in: path
          description: Playlist ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Playlist details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlaylistDto'
        '401':
          description: Unauthorized - authentication required
        '404':
          description: Playlist not found
components:
  schemas:
    PlaylistDto:
      type: object
      properties:
        id:
          type: string
          description: Unique playlist identifier
        title:
          type: string
          description: Playlist title
        ownerId:
          type: string
          description: Owner user ID
        items:
          type: array
          description: List of playlist items
          items:
            $ref: '#/components/schemas/PlaylistData.PlaylistItem'
      description: Playlist data transfer object
    PlaylistData.PlaylistItem:
      required:
        - src
        - title
      type: object
      properties:
        title:
          type: string
        src:
          type: string

````