> ## 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 user profile

> Get detailed information about a specific user



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/users/profile
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/users/profile:
    get:
      tags:
        - Users
      summary: Get user profile
      description: Get detailed information about a specific user
      operationId: getApiV1UsersProfile
      parameters:
        - in: query
          name: uri
          schema:
            type: string
            pattern: ^spotify:user:[a-zA-Z0-9]+$
            description: Spotify user URI to get user profile
            example: spotify:user:zzlpwp9oqs59bqkasw2v6d96w
          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: User ID
                        example: 31i7l2w33jedbaali4elwp733uim
                      name:
                        type: string
                        description: User name
                        example: Dragon Lila
                      uri:
                        type: string
                        description: Spotify user URI
                        example: spotify:user:31i7l2w33jedbaali4elwp733uim
                      username:
                        type: string
                        description: User username
                        example: 31i7l2w33jedbaali4elwp733uim
                      avatar:
                        type: array
                        items:
                          type: object
                          properties:
                            url:
                              type: string
                              description: Image URL
                              example: >-
                                https://i.scdn.co/image/ab67757000003b82361c0eb0c3dc24ddef291dda
                            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 user avatar images
                      followers:
                        type: number
                        description: Number of followers
                        example: 1631
                      following:
                        type: number
                        description: Number of users this user is following
                        example: 3117
                      playlists:
                        type: number
                        description: Number of public playlists
                        example: 5
                      publicPlaylists:
                        type: array
                        items:
                          type: object
                          properties:
                            uri:
                              type: string
                              description: Playlist URI
                              example: spotify:playlist:0gnwn1VBAVWjGUKikhEzkh
                            name:
                              type: string
                              description: Playlist name
                              example: My hip pop music
                            imageUrl:
                              type: string
                              description: Playlist cover image URL
                              example: >-
                                https://image-cdn-ak.spotifycdn.com/image/ab67706c0000da84395b6c77972a460d19bc56b8
                            followersCount:
                              type: number
                              description: Number of followers
                              example: 3
                            ownerName:
                              type: string
                              description: Playlist owner name
                              example: Dragon Lila
                            ownerUri:
                              type: string
                              description: Playlist owner URI
                              example: spotify:user:31i7l2w33jedbaali4elwp733uim
                          required:
                            - uri
                            - name
                        description: Array of public playlists
                    required:
                      - id
                      - name
                      - uri
                    description: User profile 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

````