> ## 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.

# List Incidents

> Returns all tracked incidents for your project with their current state,
severity, affected services, and ticketing platform status.

Results are automatically scoped to your project's tenant.




## OpenAPI

````yaml GET /api/ticketing/api/incidents
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/incidents:
    get:
      tags:
        - Ticketing
      summary: List Incidents
      description: |
        Returns all tracked incidents for your project with their current state,
        severity, affected services, and ticketing platform status.

        Results are automatically scoped to your project's tenant.
      operationId: listIncidents
      parameters:
        - name: status
          in: query
          schema:
            type: string
            enum:
              - open
              - acknowledged
              - escalated
              - resolved
          description: Filter by incident status
        - name: severity
          in: query
          schema:
            type: string
            enum:
              - critical
              - high
              - medium
              - low
          description: Filter by severity level
      responses:
        '200':
          description: List of incidents
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Incident'
              example:
                - id: inc-20240301-001
                  title: High error rate on payment-api
                  severity: critical
                  status: open
                  service: payment-api
                  anomalyScore: 4.2
                  affectedServices:
                    - payment-api
                    - order-engine
                  createdAt: '2024-03-01T15:30:00Z'
                  platforms:
                    - pagerduty
                    - jira
                    - slack
components:
  schemas:
    Incident:
      type: object
      properties:
        id:
          type: string
          example: inc-20240301-001
        title:
          type: string
          example: High error rate on payment-api
        severity:
          type: string
          enum:
            - critical
            - high
            - medium
            - low
        status:
          type: string
          enum:
            - open
            - acknowledged
            - escalated
            - resolved
        service:
          type: string
          example: payment-api
        anomalyScore:
          type: number
          example: 4.2
        createdAt:
          type: string
          format: date-time
        platforms:
          type: array
          items:
            type: string
          example:
            - pagerduty
            - jira
            - slack
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-logclaw-api-key
      description: Your project API key (starts with `lc_proj_`)

````