> ## 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 overview

> Get overview information about a specific artist including profile, stats, and basic information



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/artists/overview
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/overview:
    get:
      tags:
        - Artists
      summary: Get artist overview
      description: >-
        Get overview information about a specific artist including profile,
        stats, and basic information
      operationId: getApiV1ArtistsOverview
      parameters:
        - in: query
          name: uri
          schema:
            type: string
            pattern: ^spotify:artist:[a-zA-Z0-9]+$
            description: Spotify artist URI to get the overview of
            example: spotify:artist:41MozSoPIsD1dJM0CLPjZF
          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: Artist ID extracted from URI
                        example: 7vk5e3vY1uw9plTHJAMwjN
                      name:
                        type: string
                        description: Artist name
                        example: Alan Walker
                      uri:
                        type: string
                        description: Spotify artist URI
                        example: spotify:artist:7vk5e3vY1uw9plTHJAMwjN
                      following:
                        type: boolean
                        description: Whether the current user is following this artist
                        example: false
                      sharingInfo:
                        type: object
                        properties:
                          shareUrl:
                            type: string
                            description: Share URL
                            example: >-
                              https://open.spotify.com/artist/2w9zwq3AktTeYYMuhMjju8?si=8HEMfSflRbqqgKLlG9z_lQ
                          shareId:
                            type: string
                            description: Share ID
                            example: 8HEMfSflRbqqgKLlG9z_lQ
                        required:
                          - shareUrl
                          - shareId
                        description: Sharing information for the artist
                      verified:
                        type: boolean
                        description: Whether the artist is verified
                        example: true
                      avatar:
                        type: array
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              description: Avatar image URL
                              example: >-
                                https://i.scdn.co/image/ab6761610000e5eb572a8eae56feae217f618078
                            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 artist avatar images in different sizes
                      stats:
                        type: object
                        properties:
                          followers:
                            type: number
                            description: Number of followers
                            example: 1085323
                          monthlyListeners:
                            type: number
                            description: Number of monthly listeners
                            example: 7804823
                          worldRank:
                            type: number
                            description: World ranking of the artist
                            example: 0
                          topCities:
                            type: array
                            items:
                              type: object
                              properties:
                                city:
                                  type: string
                                  description: City name
                                  example: Mexico City
                                country:
                                  type: string
                                  description: Country code
                                  example: MX
                                region:
                                  type: string
                                  description: Region code
                                  example: CMX
                                numberOfListeners:
                                  type: number
                                  description: Number of listeners in this city
                                  example: 176300
                              required:
                                - city
                                - country
                                - numberOfListeners
                            description: >-
                              Array of top cities where the artist has the most
                              listeners
                        description: >-
                          Artist statistics including followers, monthly
                          listeners, world rank, and top cities
                      profile:
                        type: object
                        properties:
                          name:
                            type: string
                            description: Artist name
                            example: INNA
                          verified:
                            type: boolean
                            description: Whether the artist is verified
                            example: true
                          pinnedItem:
                            type: object
                            properties:
                              comment:
                                type: string
                                description: Comment for pinned item
                                example: ''
                              type:
                                type: string
                                description: Type of pinned item
                                example: PLAYLIST
                              item:
                                type: object
                                properties:
                                  uri:
                                    type: string
                                    description: URI of the pinned item
                                    example: >-
                                      spotify:user:innaofficial:playlist:5fTCpsYWArmhL7001XP9up
                                  name:
                                    type: string
                                    description: Name of the pinned item
                                    example: INNA - Complete Playlist
                                  images:
                                    type: object
                                    properties:
                                      items:
                                        type: array
                                        items:
                                          type: object
                                          properties:
                                            sources:
                                              type: array
                                              items:
                                                type: object
                                                properties:
                                                  url:
                                                    type: string
                                                    description: Image URL
                                                    example: >-
                                                      https://i.scdn.co/image/ab67706c0000da84cd928ebf038cfb82f9de2b1d
                                                  width:
                                                    type: number
                                                    description: Image width in pixels
                                                    example: 640
                                                  height:
                                                    type: number
                                                    description: Image height in pixels
                                                    example: 640
                                                required:
                                                  - url
                                              description: >-
                                                Array of image sources in different
                                                sizes
                                          required:
                                            - sources
                                    description: Images of the pinned item
                                required:
                                  - uri
                                  - name
                                description: Pinned item details
                            required:
                              - type
                            description: Pinned item on artist profile
                          biography:
                            type: object
                            properties:
                              text:
                                type: string
                                description: Biography text content
                                example: >-
                                  With an impressive string of hits, numerous
                                  awards under her trendy belt...
                            required:
                              - text
                            description: Artist biography
                          externalLinks:
                            type: object
                            properties:
                              items:
                                type: array
                                items:
                                  type: object
                                  properties:
                                    name:
                                      type: string
                                      description: Name of the external link platform
                                      example: FACEBOOK
                                    url:
                                      type: string
                                      description: URL of the external link
                                      example: https://facebook.com/Inna
                                  required:
                                    - name
                                    - url
                            description: External links (social media, etc.)
                          playlists:
                            type: object
                            properties:
                              totalCount:
                                type: number
                                description: Total number of playlists
                                example: 8
                              items:
                                type: array
                                items:
                                  type: object
                                  properties:
                                    uri:
                                      type: string
                                      description: Playlist URI
                                      example: spotify:playlist:3ybECzzbi7noSrZKNvesTN
                                    name:
                                      type: string
                                      description: Playlist name
                                      example: INNA | Dance Playlist
                                    description:
                                      type: string
                                      description: Playlist description
                                      example: Dance like there's no tomorrow. 💃🕺
                                    owner:
                                      type: object
                                      properties:
                                        name:
                                          type: string
                                          description: Owner name
                                          example: INNA
                                      required:
                                        - name
                                      description: Playlist owner information
                                    images:
                                      type: object
                                      properties:
                                        items:
                                          type: array
                                          items:
                                            type: object
                                            properties:
                                              sources:
                                                type: array
                                                items:
                                                  type: object
                                                  properties:
                                                    url:
                                                      type: string
                                                      description: Image URL
                                                      example: >-
                                                        https://i.scdn.co/image/ab67706c0000da84cd928ebf038cfb82f9de2b1d
                                                    width:
                                                      type: number
                                                      description: Image width in pixels
                                                      example: 640
                                                    height:
                                                      type: number
                                                      description: Image height in pixels
                                                      example: 640
                                                  required:
                                                    - url
                                                description: >-
                                                  Array of image sources in different
                                                  sizes
                                            required:
                                              - sources
                                      description: Playlist images
                                  required:
                                    - uri
                                    - name
                                description: Array of playlists
                            description: Artist playlists
                        description: >-
                          Detailed artist profile information including
                          biography, external links, playlists, and pinned items
                    required:
                      - id
                      - name
                      - uri
                    description: Artist overview 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

````