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

# Get Style

> Loads a single Style by id. The Style's CommentExamples are not included.



## OpenAPI

````yaml https://api.goextrovert.com/client/v2/docs-json get /client/v2/style/{id}
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/{id}:
    get:
      tags:
        - Styles
      summary: Get Style
      description: >-
        Loads a single Style by id. The Style's CommentExamples are not
        included.
      operationId: UserStyleClientApiController_getById
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetByIdResponseDto4'
        '401':
          description: Invalid or missing API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientApiErrorResponseDto'
      security:
        - api-key: []
components:
  schemas:
    GetByIdResponseDto4:
      type: object
      properties:
        status:
          type: string
          description: Response status
          enum:
            - success
        data:
          type: object
          description: Loaded Style
          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
        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

````