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

# Kill Status

> The SDK's polling endpoint (#25): cheap, cacheable, no side effects.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/bound/kill/status
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/status:
    get:
      tags:
        - bound
      summary: Kill Status
      description: 'The SDK''s polling endpoint (#25): cheap, cacheable, no side effects.'
      operationId: kill_status_api_v1_bound_kill_status_get
      parameters:
        - name: target_type
          in: query
          required: true
          schema:
            type: string
            pattern: ^(agent|model)$
            title: Target Type
        - name: target_id
          in: query
          required: true
          schema:
            type: string
            minLength: 1
            title: Target Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HaltStatus'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HaltStatus:
      properties:
        target_type:
          type: string
          enum:
            - agent
            - model
          title: Target Type
        target_id:
          type: string
          title: Target Id
        halted:
          type: boolean
          title: Halted
        drill:
          type: boolean
          title: Drill
          default: false
        since:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Since
        activation_event:
          anyOf:
            - type: string
            - type: 'null'
          title: Activation Event
        response:
          type: string
          title: Response
          default: halt
      type: object
      required:
        - target_type
        - target_id
        - halted
      title: HaltStatus
    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.

````