> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twitterapi.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Profile V3

> V3 Update Profile API - Update your X profile information. Only non-empty fields will be updated. You must have logged in via user_login_v3 first.



## OpenAPI

````yaml PUT /twitter/update_profile_v3
openapi: 3.0.1
info:
  title: TwitterAPI.io the most stable/fastest/cheapest twitter api.
  description: Provide the most stable/fastest/cheapest twitter api.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.twitterapi.io
security:
  - ApiKeyAuth: []
paths:
  /twitter/update_profile_v3:
    put:
      description: >-
        V3 Update Profile API - Update your X profile information. Only
        non-empty fields will be updated. You must have logged in via
        user_login_v3 first.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - user_name
              properties:
                user_name:
                  type: string
                  description: >-
                    Twitter username. Must be set. The user must have been
                    logged in via user_login_v3.
                name:
                  type: string
                  description: >-
                    Optional. Display name. Empty value will not update this
                    field.
                bio:
                  type: string
                  description: >-
                    Optional. Profile bio/description. Empty value will not
                    update this field.
                location:
                  type: string
                  description: Optional. Location. Empty value will not update this field.
                website:
                  type: string
                  description: >-
                    Optional. Website URL. Empty value will not update this
                    field.
                avatar:
                  type: string
                  description: >-
                    Optional. Avatar image (base64 or URL). Empty value will not
                    update this field.
                banner:
                  type: string
                  description: >-
                    Optional. Banner image (base64 or URL). Empty value will not
                    update this field.
      responses:
        '200':
          description: Update profile response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: Status of the request.
                  msg:
                    type: string
                    description: Message describing the result.
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````