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

# Global Search

> Cross-board global discovery search.

For community edition, searches across all boards since auth is local-only.
For production, would filter by user's accessible boards.



## OpenAPI

````yaml /openapi.json get /api/v1/kg/global/search
openapi: 3.1.0
info:
  description: >-
    Okto Pulse REST API schema generated from okto-pulse-core 0.2.0 source for
    docs.oktolabs.ai.
  title: Okto Pulse
  version: 0.2.0
servers: []
security: []
paths:
  /api/v1/kg/global/search:
    get:
      tags:
        - knowledge-graph
        - knowledge-graph
      summary: Global Search
      description: >-
        Cross-board global discovery search.


        For community edition, searches across all boards since auth is
        local-only.

        For production, would filter by user's accessible boards.
      operationId: global_search_api_v1_kg_global_search_get
      parameters:
        - in: query
          name: q
          required: false
          schema:
            default: ''
            title: Q
            type: string
        - in: query
          name: limit
          required: false
          schema:
            default: 20
            maximum: 100
            minimum: 1
            title: Limit
            type: integer
        - in: query
          name: min_similarity
          required: false
          schema:
            default: 0.3
            maximum: 1
            minimum: 0
            title: Min Similarity
            type: number
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````