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

# Resolve eligible regulatory lists for a client



## OpenAPI

````yaml /openapi/screening.json post /screening/eligible-lists
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/eligible-lists:
    post:
      tags:
        - Screening
      summary: Resolve eligible regulatory lists for a client
      operationId: screening.getEligibleLists
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                clientId:
                  type: string
                  format: uuid
              required:
                - clientId
              additionalProperties: false
              description: Resolve which regulatory lists are eligible for a given client.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    list:
                      type: string
                      minLength: 1
                    displayName:
                      type: string
                      minLength: 1
                    defaultProvider:
                      type: string
                      minLength: 1
                    providers:
                      type: array
                      items:
                        type: object
                        properties:
                          provider:
                            type: string
                            minLength: 1
                          eligible:
                            type: boolean
                          missingFields:
                            type: array
                            items:
                              type: string
                            readOnly: true
                        required:
                          - provider
                          - eligible
                        additionalProperties: false
                      readOnly: true
                  required:
                    - list
                    - displayName
                    - defaultProvider
                    - providers
                  additionalProperties: false
                readOnly: true
                description: Per-list, per-provider eligibility for a client.
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".

````