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

# Get log search catalog

> Returns the log source list, supported filter keys, and detail fields for the project associated with your API key.



## OpenAPI

````yaml /api/platform/v1/openapi-platform.yaml get /log_search/catalog
openapi: 3.1.0
info:
  title: Kapso Platform API
  version: 0.2.0
  description: >
    Build WhatsApp messaging into your product. Manage customers, connect phone
    numbers, send broadcasts, and handle conversations.
servers:
  - url: https://api.kapso.ai/platform/v1
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Customers
    description: Manage customer accounts
  - name: Setup Links
    description: WhatsApp onboarding via embedded signup
  - name: Phone Numbers
    description: Connect and manage WhatsApp numbers
  - name: Webhooks
    description: Subscribe to WhatsApp events
  - name: Display Names
    description: Update WhatsApp business display names
  - name: Broadcasts
    description: |
      Send template messages at scale

      **Alpha**: This API is in alpha and subject to change
  - name: Conversations
    description: Manage conversation state
  - name: Media
    description: Upload media files for WhatsApp messaging
  - name: Users
    description: Manage project team members
  - name: Inbox Embeds
    description: Create and manage embeddable inbox access links
  - name: Webhook Deliveries
    description: View webhook delivery attempts and their status
  - name: External API Logs
    description: View logs of external API calls made by the project
  - name: Log Search
    description: Search log events across API, Meta, workflow, and webhook sources
  - name: Provider Models
    description: List available AI provider models
  - name: WhatsApp Flows
    description: Build interactive WhatsApp Flows for surveys and forms
  - name: Contacts
    description: Manage WhatsApp contacts
paths:
  /log_search/catalog:
    get:
      tags:
        - Log Search
      summary: Get log search catalog
      description: >-
        Returns the log source list, supported filter keys, and detail fields
        for the project associated with your API key.
      operationId: getLogSearchCatalog
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LogSearchCatalogResponse'
              examples:
                catalog:
                  summary: Available catalog
                  value:
                    data:
                      available: true
                      catalog:
                        sources:
                          - value: all
                            label: All sources
                            color: transparent
                            aliases:
                              - all
                          - value: external_api_log
                            label: API
                            color: '#2563eb'
                            aliases:
                              - api
                              - external_api_log
                        filter_suggestions:
                          - key: endpoint
                            label: 'endpoint:'
                            description: API endpoint contains text
                            param_key: endpoint_contains
                            sources:
                              - external_api_log
                        detail_fields:
                          - flow_execution_id
                          - event_type
                          - endpoint
                          - response_status
                unavailable:
                  summary: Log search unavailable
                  value:
                    data:
                      available: false
                      events: []
        '401':
          $ref: '#/components/responses/UnauthorizedError'
components:
  schemas:
    LogSearchCatalogResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: object
          required:
            - available
          properties:
            available:
              type: boolean
            catalog:
              type: object
              properties:
                sources:
                  type: array
                  items:
                    type: object
                    properties:
                      value:
                        type: string
                      label:
                        type: string
                      color:
                        type: string
                      aliases:
                        type: array
                        items:
                          type: string
                filter_suggestions:
                  type: array
                  items:
                    type: object
                    properties:
                      key:
                        type: string
                      label:
                        type: string
                      description:
                        type: string
                      param_key:
                        type: string
                      sources:
                        type: array
                        items:
                          type: string
                detail_fields:
                  type: array
                  items:
                    type: string
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
  responses:
    UnauthorizedError:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````