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

# Sessions across all relevant workspaces (not just the cal...



## OpenAPI

````yaml /openapi.json get /graph/cross-workspace/topics/sessions
openapi: 3.0.0
info:
  title: Kair Voice
  version: '1.0'
servers:
  - url: http://0.0.0.0:8000/api
security: []
tags:
  - name: Admin
  - name: ApiKey
  - name: Auth
  - name: Concerns
  - name: Device
  - name: Graph
  - name: Health
  - name: Job
  - name: Session
  - name: Workshop
  - name: Workspace
paths:
  /graph/cross-workspace/topics/sessions:
    get:
      tags:
        - Graph
      summary: Sessions across all relevant workspaces (not just the cal...
      operationId: get-graph-cross-workspace-topics-sessions
      parameters:
        - name: name_normalised
          schema:
            type: string
          in: query
          required: true
          deprecated: false
          explode: true
        - name: entity_type
          schema:
            type: string
          in: query
          required: true
          deprecated: false
          explode: true
        - name: layer
          schema:
            type: integer
            format: int32
          in: query
          required: false
          deprecated: false
          explode: true
      responses:
        '200':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/TopicSessionsResponse'
        '400':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    TopicSessionsResponse:
      type: object
      title: TopicSessionsResponse
      required:
        - topic
        - sessions
      properties:
        topic:
          $ref: '#/components/schemas/TopicAggregate'
        sessions:
          type: array
          items:
            $ref: '#/components/schemas/TopicSession'
    ErrorResponse:
      type: object
      title: ErrorResponse
      required:
        - success
        - message
      properties:
        success:
          type: boolean
        message:
          type: string
    TopicAggregate:
      type: object
      title: TopicAggregate
      required:
        - name_normalised
        - label
        - entity_type
        - total_occurrences
        - workspace_count
        - session_count
        - workspace_ids
      properties:
        name_normalised:
          type: string
        label:
          type: string
          description: >-
            Best human-readable surface form for this topic (most common variant
            in the data).
        entity_type:
          type: string
        total_occurrences:
          type: integer
          format: int64
          description: >-
            Total number of times this topic appears across the allowed
            workspaces.

            Drives bubble size in the Connections viewer.
        workspace_count:
          type: integer
          format: int64
        session_count:
          type: integer
          format: int64
        workspace_ids:
          type: array
          items:
            type: string
    TopicSession:
      type: object
      title: TopicSession
      required:
        - session_id
        - session_title
        - workspace_id
        - workspace_name
        - owner_user_id
        - occurrences_in_session
        - viewable
      properties:
        session_id:
          type: string
        session_title:
          type: string
        workspace_id:
          type: string
        workspace_name:
          type: string
        owner_user_id:
          type: string
        owner_display_name:
          type: string
        occurrences_in_session:
          type: integer
          format: int64
        viewable:
          type: boolean
          description: >-
            `true` if the caller can read this session's summary right now
            (workspace member,

            owner, admin, or has an explicit `session_shares` row).
        request_status:
          type: string
          description: >-
            `pending` | `accepted` | `denied` | null — status of any access
            request the caller has

            already filed for this session.

````