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

# Runtime Configuration

> Returns the complete Ticketing Agent runtime configuration including
platform settings, severity routing rules, anomaly thresholds, and LLM config.

Sensitive fields (API keys, tokens) are masked with `****`.




## OpenAPI

````yaml GET /api/ticketing/api/v1/config
openapi: 3.1.0
info:
  title: LogClaw API
  description: >
    LogClaw Cloud API for log ingestion, API key management, incident
    monitoring,

    and infrastructure health. All endpoints are authenticated via the

    `x-logclaw-api-key` header.


    Generate an API key from your project dashboard at

    [console.logclaw.ai](https://console.logclaw.ai) under **Settings → API
    Keys**.
  version: 1.0.0
  contact:
    name: LogClaw
    url: https://docs.logclaw.ai
servers:
  - url: https://otel.logclaw.ai
    description: LogClaw Cloud
security:
  - apiKey: []
tags:
  - name: Ingestion
    description: OTLP log ingestion
  - name: API Keys
    description: API key management
  - name: Bridge
    description: ETL pipeline health and configuration
  - name: Ticketing
    description: Incident management and runtime config
  - name: Infrastructure
    description: Cluster health monitoring
  - name: OpenSearch
    description: Log storage and search
paths:
  /api/ticketing/api/v1/config:
    get:
      tags:
        - Ticketing
      summary: Runtime Configuration
      description: >
        Returns the complete Ticketing Agent runtime configuration including

        platform settings, severity routing rules, anomaly thresholds, and LLM
        config.


        Sensitive fields (API keys, tokens) are masked with `****`.
      operationId: runtimeConfig
      responses:
        '200':
          description: Runtime configuration
          content:
            application/json:
              example:
                platforms:
                  pagerduty:
                    enabled: true
                    routingKey: '****'
                  jira:
                    enabled: true
                    baseUrl: https://org.atlassian.net
                  slack:
                    enabled: true
                    webhookUrl: '****'
                routing:
                  critical:
                    - pagerduty
                    - slack
                    - jira
                  high:
                    - jira
                    - slack
                  medium:
                    - jira
                  low:
                    - slack
                anomaly:
                  minimumScore: 0.85
                  lookbackWindow: 15m
                llm:
                  provider: openai
                  model: gpt-4
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-logclaw-api-key
      description: Your project API key (starts with `lc_proj_`)

````