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

# Get script-reported compliance events

> Get compliance events reported by filter scripts, with filtering and aggregation



## OpenAPI

````yaml /swagger/nightly/ai-studio-swagger.yml get /compliance/events
openapi: 3.0.1
info:
  title: Midsommar API
  description: This is the API for the Midsommar user and group management system.
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    url: http://www.swagger.io/support
    email: support@swagger.io
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
  - url: //localhost:8080/api/v1
security: []
paths:
  /compliance/events:
    get:
      tags:
        - Compliance
      summary: Get script-reported compliance events
      description: >-
        Get compliance events reported by filter scripts, with filtering and
        aggregation
      parameters:
        - name: start_date
          in: query
          description: Start date (YYYY-MM-DD), defaults to 7 days ago
          schema:
            type: string
        - name: end_date
          in: query
          description: End date (YYYY-MM-DD), defaults to today
          schema:
            type: string
        - name: app_id
          in: query
          description: Filter by app ID
          schema:
            type: integer
        - name: event_type
          in: query
          description: Filter by event type
          schema:
            type: string
        - name: severity
          in: query
          description: Filter by severity (info, warning, critical)
          schema:
            type: string
        - name: limit
          in: query
          description: Maximum number of records, defaults to 100
          schema:
            type: integer
        - name: offset
          in: query
          description: Pagination offset, defaults to 0
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/compliance.ComplianceEventsData'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
components:
  schemas:
    compliance.ComplianceEventsData:
      type: object
      properties:
        by_filter:
          type: object
          additionalProperties:
            type: integer
        by_severity:
          type: object
          additionalProperties:
            type: integer
        by_type:
          type: object
          additionalProperties:
            type: integer
        events:
          type: array
          items:
            $ref: '#/components/schemas/compliance.ComplianceEventRecord'
        timeline:
          type: array
          items:
            $ref: '#/components/schemas/compliance.TimelineData'
        total_count:
          type: integer
    models.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
    compliance.ComplianceEventRecord:
      type: object
      properties:
        app_id:
          type: integer
        app_name:
          type: string
        description:
          type: string
        event_type:
          type: string
        filter_name:
          type: string
        filter_scope:
          type: string
        id:
          type: integer
        llm_id:
          type: integer
        metadata:
          type: object
          additionalProperties: true
        model_name:
          type: string
        severity:
          type: string
        timestamp:
          type: string
        user_id:
          type: integer
        vendor:
          type: string
    compliance.TimelineData:
      type: object
      properties:
        count:
          type: integer
        date:
          type: string

````