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

# List server-normalized regulatory-list rows for a client



## OpenAPI

````yaml /openapi/screening.json post /screening/list-summary
openapi: 3.1.1
info:
  title: ARTU Compliance API
  version: 1.0.0
  description: 'API for compliance management. Documentation: https://docs.artu.ai'
servers:
  - url: https://api.artu.ai
security:
  - bearerAuth: []
    environmentHeader: []
paths:
  /screening/list-summary:
    post:
      tags:
        - Screening
      summary: List server-normalized regulatory-list rows for a client
      operationId: screening.listSummary
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                clientId:
                  type: string
                  format: uuid
              required:
                - clientId
              additionalProperties: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    name:
                      type: string
                      minLength: 1
                    providerId:
                      type: string
                      minLength: 1
                    checkId:
                      type: string
                      minLength: 1
                    status:
                      enum:
                        - hit
                        - cleared
                        - failed
                      type: string
                    checkedAt:
                      type: string
                      format: date-time
                  required:
                    - name
                    - providerId
                    - checkId
                    - status
                    - checkedAt
                  additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: API key authentication. Obtain your API key from the dashboard.
    environmentHeader:
      type: apiKey
      in: header
      name: X-Environment
      description: Target environment for the request. Must be "test" or "live".

````