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

# List cases (the compliance inbox)



## OpenAPI

````yaml /api-reference/platform-api.json get /v2/cases
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.16
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Transfer Enrichments
    description: Attach workspace-scoped notes and categories to transfers.
  - name: Counterparties
    description: Manage external entities, their addresses, bank accounts, and documents.
paths:
  /v2/cases:
    get:
      tags:
        - Cases
      summary: List cases (the compliance inbox)
      operationId: list
      parameters:
        - name: status
          required: false
          in: query
          schema:
            type: string
            enum:
              - open
              - in_review
              - resolved
        - name: severity
          required: false
          in: query
          schema:
            type: string
            enum:
              - severe
              - high
              - medium
              - low
        - name: assignee
          required: false
          in: query
          schema:
            maxLength: 256
            example: compliance@example.com
            type: string
        - name: source_type
          required: false
          in: query
          schema:
            enum:
              - risk_screen
              - sanctions_screen
              - alert_event
              - manual
            type: string
        - name: q
          required: false
          in: query
          description: Free-text search over title/subject/tx_hash.
          schema:
            maxLength: 200
            type: string
        - name: sort
          required: false
          in: query
          schema:
            default: severity_desc
            type: string
            enum:
              - severity_desc
              - newest
              - oldest
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 200
            default: 50
            type: number
        - name: cursor
          required: false
          in: query
          description: >-
            Opaque pagination cursor from a previous response — echo back
            `meta.next_cursor` verbatim.
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListCasesResponseDto'
components:
  schemas:
    ListCasesResponseDto:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/CaseListItemDto'
        meta:
          $ref: '#/components/schemas/CursorMetaDto'
      required:
        - items
        - meta
    CaseListItemDto:
      type: object
      properties:
        id:
          type: string
        workspace_id:
          type: string
        title:
          type: string
        status:
          type: string
          enum:
            - open
            - in_review
            - resolved
        resolution:
          type: string
          nullable: true
          enum:
            - dismissed
            - escalated
        severity:
          type: string
          enum:
            - severe
            - high
            - medium
            - low
        source_type:
          enum:
            - risk_screen
            - sanctions_screen
            - alert_event
            - manual
          type: string
        source_id:
          type: string
          nullable: true
        subject:
          $ref: '#/components/schemas/CaseSubjectDto'
        assignee:
          type: string
          nullable: true
        created_by:
          type: string
          nullable: true
        created_at:
          type: string
        updated_at:
          type: string
        resolved_at:
          type: string
          nullable: true
        viewed:
          type: boolean
          description: Whether the calling user has opened this case before.
      required:
        - id
        - workspace_id
        - title
        - status
        - severity
        - source_type
        - subject
        - created_at
        - updated_at
        - viewed
    CursorMetaDto:
      type: object
      properties:
        next_cursor:
          type: string
          nullable: true
          description: >-
            Opaque string cursor pointing to the next page of results. null if
            there is no next page.
          example: eyJpZCI6IjkxeFFlV3Z...
        previous_cursor:
          type: string
          nullable: true
          description: >-
            Opaque string cursor pointing to the previous page of results. null
            if there is no previous page.
          example: eyJpZCI6IjkxeFFlV3Z...
        first_page_cursor:
          type: string
          description: >-
            Opaque string cursor pointing to the very first page in the entire
            dataset with respect to the current filter.
          example: eyJpZCI6IjkxeFFlV3Z...
        last_page_cursor:
          type: string
          nullable: true
          description: >-
            Opaque string cursor pointing to the very last page in the entire
            dataset with respect to the current filter.
          example: eyJpZCI6IjkxeFFlV3Z...
        total_count:
          type: number
          nullable: true
          description: Total number of results.
          example: 100
        page_number:
          type: number
          description: Current page number.
          example: 1
    CaseSubjectDto:
      type: object
      properties:
        type:
          enum:
            - address
            - transaction
            - counterparty
          type: string
        address:
          type: string
          maxLength: 256
          example: '0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28'
        network:
          type: string
          maxLength: 256
          example: ethereum
        tx_hash:
          type: string
          maxLength: 256
          example: 0xabc...
        name:
          type: string
          maxLength: 256
          description: Always populated — falls back to a shortened address/tx_hash.
      required:
        - type
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````