> ## 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 podcast detail

> Get detailed information about a specific podcast show



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/podcasts/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/podcasts/detail:
    get:
      tags:
        - Podcasts
      summary: Get podcast detail
      description: Get detailed information about a specific podcast show
      operationId: getApiV1PodcastsDetail
      parameters:
        - in: query
          name: uri
          schema:
            type: string
            pattern: ^spotify:show:[a-zA-Z0-9]+$
            description: Spotify podcast show URI to get podcast details
            example: spotify:show:49OwrixbpMZv50gcLPH9TV
          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: Podcast show ID
                        example: 01D0AFRb4NwV2bbMbsQMgo
                      name:
                        type: string
                        description: Podcast show name
                        example: Lady Killers with Lucy Worsley
                      uri:
                        type: string
                        description: Spotify podcast show URI
                        example: spotify:show:01D0AFRb4NwV2bbMbsQMgo
                      description:
                        type: string
                        description: Podcast show description
                        example: >-
                          Lucy Worsley investigates the crimes of Victorian
                          women from a contemporary, feminist perspective.
                      htmlDescription:
                        type: string
                        description: HTML formatted description
                        example: >-
                          <p>Lucy Worsley investigates the crimes of Victorian
                          women from a contemporary, feminist perspective.</p>
                      coverArt:
                        type: array
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              description: Image URL
                              example: >-
                                https://i.scdn.co/image/ab6765630000f68d94f52ca224075c6411271ad4
                            width:
                              type: number
                              description: Image width in pixels
                              example: 64
                            height:
                              type: number
                              description: Image height in pixels
                              example: 64
                          required:
                            - url
                            - width
                            - height
                        description: Array of podcast show cover images in different sizes
                      publisher:
                        type: object
                        properties:
                          name:
                            type: string
                            description: Publisher name
                            example: BBC Radio 4
                        required:
                          - name
                        description: Podcast publisher information
                      topics:
                        type: array
                        items:
                          type: object
                          properties:
                            title:
                              type: string
                              description: Topic title
                              example: History
                            uri:
                              type: string
                              description: Topic URI
                              example: spotify:genre:0JQ5DAqbMKFKK9EFSCDuOS
                          required:
                            - title
                            - uri
                        description: Array of podcast topics/genres
                      rating:
                        type: object
                        properties:
                          averageRating:
                            type: object
                            properties:
                              average:
                                type: number
                                description: Average rating
                                example: 4.83631232361242
                              showAverage:
                                type: boolean
                                description: Whether to show average rating
                                example: true
                              totalRatings:
                                type: number
                                description: Total number of ratings
                                example: 1063
                            required:
                              - average
                              - showAverage
                              - totalRatings
                            description: Average rating information
                          canRate:
                            type: boolean
                            description: Whether user can rate
                            example: true
                        description: Podcast rating information
                      playability:
                        type: object
                        properties:
                          playable:
                            type: boolean
                            description: Whether the podcast is playable
                            example: true
                          reason:
                            type: string
                            description: Playability reason
                            example: PLAYABLE
                        required:
                          - playable
                        description: Podcast playability information
                      totalEpisodes:
                        type: number
                        description: Total number of episodes
                        example: 100
                      following:
                        type: boolean
                        description: Whether the current user is following this podcast
                        example: false
                      saved:
                        type: boolean
                        description: Whether the podcast is saved by the user
                        example: false
                      sharingInfo:
                        type: object
                        properties:
                          shareId:
                            type: string
                            description: Share ID
                            example: 4lR0Ww6YR-qK_KRQoewyaA
                          shareUrl:
                            type: string
                            description: Share URL
                            example: >-
                              https://open.spotify.com/show/01D0AFRb4NwV2bbMbsQMgo?si=4lR0Ww6YR-qK_KRQoewyaA
                        required:
                          - shareId
                          - shareUrl
                        description: Podcast sharing information
                    required:
                      - id
                      - name
                      - uri
                      - coverArt
                    description: Podcast 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

````