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

# List Labeling Events



## OpenAPI

````yaml /api-reference/openapi.json get /api/runtime-security/apps/{app_uuid}/labeling/events
openapi: 3.1.0
info:
  title: Blindsight API
  version: 0.1.0
  description: >-
    The full Blindsight REST surface, generated from the running application.
    Replace the server host with your own deployment.


    For the Runtime Security integration surface (scan, proxy, tool calls) see
    the Runtime Security spec, which is hand written and carries worked
    examples.
servers:
  - url: https://api.your-blindsight.com
    description: Your Blindsight deployment
security: []
paths:
  /api/runtime-security/apps/{app_uuid}/labeling/events:
    get:
      tags:
        - runtime-security-apps
      summary: List Labeling Events
      operationId: >-
        list_labeling_events_api_runtime_security_apps__app_uuid__labeling_events_get
      parameters:
        - name: app_uuid
          in: path
          required: true
          schema:
            type: string
            title: App Uuid
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: verdict
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Verdict
        - name: direction
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Direction
        - name: label_status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Label Status
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Q
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LabelingEventsPage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LabelingEventsPage:
      properties:
        items:
          items:
            $ref: '#/components/schemas/LabelingEventItem'
          type: array
          title: Items
        total:
          type: integer
          title: Total
        facets:
          additionalProperties:
            type: integer
          type: object
          title: Facets
      type: object
      required:
        - items
        - total
      title: LabelingEventsPage
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    LabelingEventItem:
      properties:
        uuid:
          type: string
          title: Uuid
        created_at:
          type: string
          format: date-time
          title: Created At
        direction:
          type: string
          title: Direction
        verdict:
          type: string
          title: Verdict
        injection_score:
          type: number
          title: Injection Score
          default: 0
        injection_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Injection Label
        pii_count:
          type: integer
          title: Pii Count
          default: 0
        pii_categories:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Pii Categories
        text_length:
          type: integer
          title: Text Length
          default: 0
        redacted_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Redacted Text
        original_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Original Text
        text_source:
          type: string
          title: Text Source
        provider:
          anyOf:
            - type: string
            - type: 'null'
          title: Provider
        model:
          anyOf:
            - type: string
            - type: 'null'
          title: Model
        tool_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Tool Name
        blocked_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Blocked Reason
        labels:
          items:
            $ref: '#/components/schemas/EventLabelRead'
          type: array
          title: Labels
      type: object
      required:
        - uuid
        - created_at
        - direction
        - verdict
        - text_source
      title: LabelingEventItem
      description: |-
        One event row in the labeling table: detector output + the caller's
        labels for it (0..2, one per judged dimension).
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    EventLabelRead:
      properties:
        uuid:
          type: string
          title: Uuid
        event_id:
          type: integer
          title: Event Id
        dimension:
          type: string
          title: Dimension
        mark:
          type: string
          title: Mark
        predicted_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Predicted Label
        predicted_score:
          type: number
          title: Predicted Score
          default: 0
        given_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Given Label
        corrected_intent:
          anyOf:
            - type: string
            - type: 'null'
          title: Corrected Intent
        corrected_is_acting:
          anyOf:
            - type: string
            - type: 'null'
          title: Corrected Is Acting
        corrected_pii_categories:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Corrected Pii Categories
        text_source:
          type: string
          title: Text Source
        note:
          anyOf:
            - type: string
            - type: 'null'
          title: Note
        reviewer_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Reviewer Id
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - uuid
        - event_id
        - dimension
        - mark
        - text_source
        - created_at
        - updated_at
      title: EventLabelRead

````