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

# List Kill Events



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/bound/kill/events
openapi: 3.1.0
info:
  title: Sakshi — Agent Governance API
  description: >-
    Registry (KYA), decision flight recorder, bounded autonomy, evidence packs,
    fairness screens. Auth: bearer ingest keys create evidence; OIDC JWTs with
    governance roles mutate state.
  version: 0.1.0
servers:
  - url: https://demo.rotavision.com
    description: Public demo (read-only, synthetic data)
  - url: https://{host}
    description: Your Sakshi deployment (single-tenant, in your environment)
    variables:
      host:
        default: sakshi.your-company.internal
security:
  - bearerAuth: []
paths:
  /api/v1/bound/kill/events:
    get:
      tags:
        - bound
      summary: List Kill Events
      operationId: list_kill_events_api_v1_bound_kill_events_get
      parameters:
        - name: target_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Target Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            default: 100
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KillEventOut'
                title: Response List Kill Events Api V1 Bound Kill Events Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    KillEventOut:
      properties:
        id:
          type: string
          title: Id
        target_type:
          type: string
          title: Target Type
        target_id:
          type: string
          title: Target Id
        action:
          type: string
          title: Action
        drill:
          type: boolean
          title: Drill
        reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Reason
        actor:
          anyOf:
            - type: string
            - type: 'null'
          title: Actor
        response:
          type: string
          title: Response
        safe_envelope_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Safe Envelope Id
        releases_event:
          anyOf:
            - type: string
            - type: 'null'
          title: Releases Event
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - target_type
        - target_id
        - action
        - drill
        - reason
        - actor
        - response
        - safe_envelope_id
        - releases_event
        - created_at
      title: KillEventOut
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Ingest API key or OIDC JWT. See /authentication.

````