> ## 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 appears on

> Get albums and playlists where the artist appears as a featured artist



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/artists/appears-on
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/appears-on:
    get:
      tags:
        - Artists
      summary: Get artist appears on
      description: Get albums and playlists where the artist appears as a featured artist
      operationId: getApiV1ArtistsAppears-on
      parameters:
        - in: query
          name: uri
          schema:
            type: string
            pattern: ^spotify:artist:[a-zA-Z0-9]+$
            description: Spotify artist URI to get the appears on albums/playlists
            example: spotify:artist:3Nrfpe0tUJi4K4DXYWgMUX
          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 appears on items
                        example: 23
                      items:
                        type: array
                        items:
                          type: object
                          properties:
                            releases:
                              type: object
                              properties:
                                items:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      id:
                                        type: string
                                        description: Release ID
                                        example: 1typPCwqyXMfFpvDZAyKew
                                      name:
                                        type: string
                                        description: Release name
                                        example: Fighting Demons (Deluxe)
                                      uri:
                                        type: string
                                        description: Spotify release URI
                                        example: spotify:album:1typPCwqyXMfFpvDZAyKew
                                      artists:
                                        type: object
                                        properties:
                                          items:
                                            type: array
                                            items:
                                              type: object
                                              properties:
                                                name:
                                                  type: string
                                                  description: Artist name
                                                  example: Juice WRLD
                                                uri:
                                                  type: string
                                                  description: Spotify artist URI
                                                  example: spotify:artist:4MCBfE4596Uoi2O4DtmEMz
                                              required:
                                                - name
                                                - uri
                                            description: Array of artists
                                        description: Artists associated with the release
                                      coverArts:
                                        type: array
                                        items:
                                          type: object
                                          properties:
                                            url:
                                              type: string
                                              description: Image URL
                                              example: >-
                                                https://i.scdn.co/image/ab67616d00001e02ec10f247b100da1ce0d80b6d
                                            width:
                                              type: number
                                              description: Image width in pixels
                                              example: 300
                                            height:
                                              type: number
                                              description: Image height in pixels
                                              example: 300
                                          required:
                                            - url
                                            - width
                                            - height
                                        description: >-
                                          Array of cover art images for the
                                          release
                                      sharingInfo:
                                        type: object
                                        properties:
                                          shareUrl:
                                            type: string
                                            description: Share URL
                                            example: >-
                                              https://open.spotify.com/album/1typPCwqyXMfFpvDZAyKew?si=JCBVWCi8SkWKaBxp1I33Xw
                                          shareId:
                                            type: string
                                            description: Share ID
                                            example: JCBVWCi8SkWKaBxp1I33Xw
                                        required:
                                          - shareUrl
                                          - shareId
                                        description: Sharing information for the release
                                    required:
                                      - id
                                      - name
                                      - uri
                                  description: Array of releases
                                totalCount:
                                  type: number
                                  description: Total number of releases
                                  example: 2
                              description: Releases information
                        description: Array of appears on items
                    description: Artist appears on albums and 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

````