> ## 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 artist discovered (Playlist)

> Get playlists where the artist is discovered



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/artists/discovered
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/artists/discovered:
    get:
      tags:
        - Artists
      summary: Get artist discovered (Playlist)
      description: Get playlists where the artist is discovered
      operationId: getApiV1ArtistsDiscovered
      parameters:
        - in: query
          name: uri
          schema:
            type: string
            pattern: ^spotify:artist:[a-zA-Z0-9]+$
            description: Spotify artist URI to get discovered on playlists
            example: spotify:artist:30b9WulBM8sFuBo17nNq9c
          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:
                      totalCount:
                        type: number
                        description: Total number of discovered on playlists
                        example: 100
                      items:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                              description: Playlist name
                              example: This Is G-DRAGON
                            description:
                              type: string
                              description: Playlist description
                              example: >-
                                This is G-DRAGON. The essential tracks, all in
                                one playlist.
                            uri:
                              type: string
                              description: Spotify playlist URI
                              example: spotify:playlist:37i9dQZF1DZ06evO1Jy5Gw
                            images:
                              type: array
                              items:
                                type: object
                                properties:
                                  url:
                                    type: string
                                    description: Image URL
                                    example: >-
                                      https://i.scdn.co/image/ab67706f00000002fb55a70730360f1eb77e1bbc
                                  width:
                                    type:
                                      - number
                                      - 'null'
                                    description: Image width in pixels
                                    example: null
                                  height:
                                    type:
                                      - number
                                      - 'null'
                                    description: Image height in pixels
                                    example: null
                                required:
                                  - url
                              description: Array of playlist images
                            owner:
                              type: object
                              properties:
                                name:
                                  type: string
                                  description: Owner name
                                  example: Spotify
                              required:
                                - name
                              description: Playlist owner information
                          required:
                            - name
                            - uri
                        description: Array of discovered on playlists
                    description: Discovered on playlists 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

````