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

# Get v1skillsinsight links



## OpenAPI

````yaml /openapi.json get /v1/skills/insight-links
openapi: 3.1.0
info:
  title: Lighthouse API
  description: Lighthouse funeral home management API
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.lighthousefh.com
    description: Production
security:
  - bearer_auth: []
tags:
  - name: Health
    description: Health check endpoints
  - name: Cases
    description: Case management
  - name: Calls
    description: Call recordings and transcriptions
  - name: Dorso
    description: Dorso worker protocol
  - name: Clips
    description: Short audio clips and transcripts
  - name: Users
    description: User management
  - name: Organizations
    description: Organization management
  - name: Locations
    description: Location management
  - name: Case Data
    description: Custom case data values
  - name: Case Data Fields
    description: Custom case data field definitions
  - name: Generations
    description: User-sourced generation overrides
  - name: Generation Templates
    description: AI generation templates
  - name: Generation Feedback
    description: End-user feedback on generations
  - name: Generation Labels
    description: Generation quality labels
  - name: Generation Quality Test
    description: Generation quality testing
  - name: Generation Template Dependencies
    description: Template dependency management
  - name: Score Instructions
    description: Score instructions for generation templates
  - name: Tasks
    description: Case tasks
  - name: Insights
    description: Org insights dashboard and agent analysis reads
  - name: Coaching Goals
    description: Manager coaching goals for Insights metrics
  - name: Skills
    description: Practice skills catalog and insight links
  - name: Lucille Query
    description: Lucille JSON query language
  - name: Conversations
    description: Assistant chat conversations
  - name: User Preferences
    description: User preference settings
  - name: User Managers
    description: User-manager relationships
  - name: User Permissions
    description: User permission management
  - name: Roleplay Categories
    description: Roleplay category (skill) catalog
  - name: Roleplay Complications
    description: Roleplay complications catalog
  - name: Roleplay Personas
    description: Roleplay persona catalog
  - name: Roleplay Phases
    description: Roleplay phase catalog
  - name: Roleplay Runs
    description: Completed roleplay runs
  - name: Roleplay Scenarios
    description: Roleplay scenarios
  - name: Roleplay Voices
    description: Roleplay voice catalog
  - name: Scenario Score Templates
    description: Scenario scoring template attachments
  - name: Zoom
    description: Zoom account connection and user mapping
  - name: External Sessions
    description: Inbound sessions originated outside Lighthouse
paths:
  /v1/skills/insight-links:
    get:
      tags:
        - Skills
      operationId: list_skill_insight_links
      responses:
        '200':
          description: Org-visible skills grouped by insight generation template
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_Vec_SkillInsightLinkGroup'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      security:
        - bearer_auth: []
components:
  schemas:
    ApiResponse_Vec_SkillInsightLinkGroup:
      type: object
      required:
        - status
        - timestamp
      properties:
        data:
          type: array
          items:
            type: object
            required:
              - generation_template_uuid
              - skills
            properties:
              generation_template_uuid:
                type: string
                format: uuid
              skills:
                type: array
                items:
                  $ref: '#/components/schemas/Skill'
        message:
          type:
            - string
            - 'null'
        request_id:
          type:
            - string
            - 'null'
        status:
          type: string
        timestamp:
          type: string
          format: date-time
    ApiError:
      type: object
      required:
        - status
        - error
        - message
        - status_code
        - timestamp
      properties:
        error:
          type: string
        message:
          type: string
        request_id:
          type:
            - string
            - 'null'
        status:
          type: string
        status_code:
          type: integer
          format: int32
          minimum: 0
        timestamp:
          type: string
          format: date-time
    Skill:
      type: object
      required:
        - uuid
        - title
        - summary
        - tagline
        - category
        - lesson
        - gradient
        - accent
        - created_at
        - updated_at
      properties:
        accent:
          type: string
        category:
          $ref: '#/components/schemas/SkillCategory'
        created_at:
          type: string
          format: date-time
        created_by:
          type:
            - string
            - 'null'
          format: uuid
        deleted_at:
          type:
            - string
            - 'null'
          format: date-time
        deleted_by:
          type:
            - string
            - 'null'
          format: uuid
        gradient:
          type: string
        lesson:
          $ref: '#/components/schemas/Lesson'
        organization_uuid:
          type:
            - string
            - 'null'
          format: uuid
        summary:
          type: string
        tagline:
          type: string
        title:
          type: string
        updated_at:
          type: string
          format: date-time
        updated_by:
          type:
            - string
            - 'null'
          format: uuid
        uuid:
          type: string
          format: uuid
    SkillCategory:
      type: string
      enum:
        - present
        - call_presence
        - questions
        - why
        - closing
    Lesson:
      type: object
      required:
        - title
        - body
      properties:
        body:
          type: string
        title:
          type: string
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer

````