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

# Get playlist detail

> Get detailed information about a specific playlist



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/playlists/detail
openapi: 3.1.0
info:
  title: Spotify APIs
  description: Spotify API Documentation
  version: 1.0.0
servers:
  - url: https://spotify-api31.p.rapidapi.com
security: []
paths:
  /api/v1/playlists/detail:
    get:
      tags:
        - Playlists
      summary: Get playlist detail
      description: Get detailed information about a specific playlist
      operationId: getApiV1PlaylistsDetail
      parameters:
        - in: query
          name: uri
          schema:
            type: string
            pattern: ^spotify:playlist:[a-zA-Z0-9]+$
            description: Spotify playlist URI to get playlist details
            example: spotify:playlist:7xgweIQV3bb0uXAgSHbmcH
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Success
                  statusCode:
                    type: number
                    example: 200
                  pagination:
                    type: object
                    properties:
                      total:
                        type: number
                        example: 100
                      hasMore:
                        type: boolean
                        example: true
                      continuation:
                        type:
                          - string
                          - 'null'
                        description: Continuation token for pagination
                        example: CDsQ8FsiEwje95_F1pmRAxXlsykDHUX
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        description: Playlist ID
                        example: 7xgweIQV3bb0uXAgSHbmcH
                      name:
                        type: string
                        description: Playlist name
                        example: okok
                      uri:
                        type: string
                        description: Spotify playlist URI
                        example: spotify:playlist:7xgweIQV3bb0uXAgSHbmcH
                      description:
                        type: string
                        description: Playlist description
                        example: ''
                      images:
                        type: array
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              description: Image URL
                              example: >-
                                https://i.scdn.co/image/ab67706c0000d72c2e3d50a3d9b8ee9fe3a61dbd
                            width:
                              type: number
                              description: Image width in pixels
                              example: 640
                            height:
                              type: number
                              description: Image height in pixels
                              example: 640
                          required:
                            - url
                            - width
                            - height
                        description: Array of playlist cover images
                      owner:
                        type: object
                        properties:
                          name:
                            type: string
                            description: Owner name
                            example: James CM
                          uri:
                            type: string
                            description: Spotify user URI
                            example: spotify:user:31wwpuobx7tptyouqcr4rbiw2lli
                          username:
                            type: string
                            description: Owner username
                            example: 31wwpuobx7tptyouqcr4rbiw2lli
                          avatar:
                            type: array
                            items:
                              type: object
                              properties:
                                url:
                                  type: string
                                  description: Image URL
                                  example: >-
                                    https://i.scdn.co/image/ab67706c0000d72c2e3d50a3d9b8ee9fe3a61dbd
                                width:
                                  type: number
                                  description: Image width in pixels
                                  example: 640
                                height:
                                  type: number
                                  description: Image height in pixels
                                  example: 640
                              required:
                                - url
                                - width
                                - height
                            description: Array of owner avatar images
                        required:
                          - name
                          - uri
                          - username
                        description: Playlist owner information
                      totalTracks:
                        type: number
                        description: Total number of tracks in the playlist
                        example: 374
                      followers:
                        type: number
                        description: Number of followers
                        example: 0
                      following:
                        type: boolean
                        description: Whether the current user is following this playlist
                        example: false
                      sharingInfo:
                        type: object
                        properties:
                          shareId:
                            type: string
                            description: Share ID
                            example: QP6BNO9rS-KiivWLeywjjw
                          shareUrl:
                            type: string
                            description: Share URL
                            example: >-
                              https://open.spotify.com/playlist/7xgweIQV3bb0uXAgSHbmcH?si=QP6BNO9rS-KiivWLeywjjw
                        required:
                          - shareId
                          - shareUrl
                        description: Playlist sharing information
                    required:
                      - id
                      - name
                      - uri
                      - images
                    description: Playlist detail information
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Invalid API key
        '403':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      You are not subscribed to this API, please subscribe
                      before using
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Internal Server Error
                  status_code:
                    type: number
                    example: 500
                  cost:
                    type: number
                    example: 0
                  explain:
                    type: string
                    example: Internal Server Error
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key
      description: API Key

````