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

# List Styles

> Returns all Styles owned by the given user. A Style helps Extrovert match how the user writes. It holds separate instructions for comments and direct messages, plus a learning-mode setting. Related Comment Examples show the user's voice; they are managed through separate actions and are not returned here. The number of Styles per user is capped by the plan.



## OpenAPI

````yaml https://api.goextrovert.com/client/v2/docs-json get /client/v2/style
openapi: 3.0.0
info:
  title: Extrovert Client API
  description: >-
    Public API for Extrovert platform integration. Use your API key for
    authentication.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.goextrovert.com/
    description: API Server
security: []
tags: []
paths:
  /client/v2/style:
    get:
      tags:
        - Styles
      summary: List Styles
      description: >-
        Returns all Styles owned by the given user. A Style helps Extrovert
        match how the user writes. It holds separate instructions for comments
        and direct messages, plus a learning-mode setting. Related Comment
        Examples show the user's voice; they are managed through separate
        actions and are not returned here. The number of Styles per user is
        capped by the plan.
      operationId: UserStyleClientApiController_getOwnerList
      parameters:
        - description: ID of the user whose Styles should be returned.
          required: true
          name: id
          in: query
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOwnerListResponseDto3'
        '401':
          description: Invalid or missing API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientApiErrorResponseDto'
      security:
        - api-key: []
components:
  schemas:
    GetOwnerListResponseDto3:
      type: object
      properties:
        status:
          type: string
          description: Response status
          enum:
            - success
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                format: uuid
                description: Style ID
                example: 8d256aa6-9b12-49a7-93ee-bf41634b5b60
              updatedAt:
                type: string
                description: Style update timestamp
                example: '2025-06-30T14:02:07.456Z'
              createdAt:
                type: string
                description: Style creation timestamp
                example: '2025-06-30T14:02:07.456Z'
              name:
                type: string
                description: Short human-readable label for the Style.
              isLearningModeEnabled:
                type: boolean
                description: >-
                  Whether the Style is in learning mode. When `true`, the
                  backend auto-saves as CommentExamples only those comments the
                  user both approved AND edited before approval (unchanged
                  auto-approved comments are NOT saved). Only comments are
                  learned — DMs are never auto-saved. The Style's
                  CommentExamples are capped at 20 entries; auto-saved and
                  manual entries share the same 20-slot cap. When `false`, no
                  auto-learning happens and existing CommentExamples keep being
                  used as-is.
              user:
                description: >-
                  Reference to the user this Style belongs to — carries only
                  `id` and `name`. Fetch the full user record separately if
                  needed. May be missing if the user is no longer available.
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    description: Entity ID
                    example: 8d256aa6-9b12-49a7-93ee-bf41634b5b60
                  name:
                    type: string
                    description: Entity name
                required:
                  - id
                  - name
              styleInstructionsForComments:
                description: >-
                  Free-form plain text with style instructions for comment
                  generation (tone, structure, do/don't). Used only when
                  generating comments, not DMs.
                type: string
              styleInstructionsForDm:
                description: >-
                  Free-form plain text with style instructions for
                  direct-message generation (tone, structure, do/don't). Used
                  only when generating DMs, not comments.
                type: string
            required:
              - id
              - updatedAt
              - createdAt
              - name
              - isLearningModeEnabled
          description: Styles owned by the requested user
        message:
          type: string
          description: Success message
          example: Operation completed successfully
      required:
        - status
        - data
        - message
    ClientApiErrorResponseDto:
      type: object
      properties:
        status:
          type: string
          description: Response status
          example: error
          enum:
            - error
        data:
          type: object
          description: Response data
          example: null
        message:
          type: string
          description: Error message
          example: An error occurred while processing the request
      required:
        - status
        - data
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key for authentication

````