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

# Get cases



## OpenAPI

````yaml get /beta/guardian-ops/cases
openapi: 3.0.1
info:
  title: abusix-api
  version: '2026-04-08T06:45:02Z'
servers:
  - url: https://api.abusix.com
security: []
paths:
  /beta/guardian-ops/cases:
    get:
      parameters:
        - name: state
          in: query
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: string
        - name: sort
          in: query
          schema:
            type: string
        - name: order
          in: query
          schema:
            type: string
        - name: cursor
          in: query
          schema:
            type: string
        - name: customer_id
          in: query
          schema:
            type: string
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicCaseSummaryList'
        '400':
          description: 400 response
          content: {}
        '401':
          description: 401 response
          content: {}
      security:
        - abusix-api-gateway-authorizer-prod: []
components:
  schemas:
    PublicCaseSummaryList:
      required:
        - items
      type: object
      properties:
        items:
          type: array
          description: Array of case summaries for the current page
          items:
            required:
              - created_at
              - customer_id
              - first_event_date
              - id
              - last_event_date
              - state
              - tenant_id
            type: object
            properties:
              contract_id:
                type: string
                description: Contract identifier
              created_at:
                type: string
                description: Timestamp when the case was created
                format: date-time
              customer_id:
                type: string
                description: Customer identifier
              first_event_date:
                type: string
                description: Timestamp of the first event
                format: date-time
              id:
                type: string
                description: Unique case identifier
              last_event_date:
                type: string
                description: Timestamp of the most recent event
                format: date-time
              state:
                type: string
                description: >-
                  Current state of the case: NEW, IN_PROGRESS, RESOLVED, or
                  CLOSED
              tenant_id:
                type: string
                description: Tenant identifier
        next_cursor:
          type: string
          description: Cursor for the next page, null if no more results
  securitySchemes:
    abusix-api-gateway-authorizer-prod:
      type: http
      scheme: bearer
      bearerFormat: JWT

````