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

# Get one screening run with its per-source results



## OpenAPI

````yaml /openapi/screening.json post /screening/run-detail
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/run-detail:
    post:
      tags:
        - Screening
      summary: Get one screening run with its per-source results
      operationId: screening.getRunDetail
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                runId:
                  type: string
                  format: uuid
              required:
                - runId
              additionalProperties: false
              description: Fetch one screening run with its per-source results.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  clientId:
                    type: string
                    format: uuid
                  checkedBy:
                    type: string
                    minLength: 1
                  results:
                    type: object
                    propertyNames:
                      type: string
                      minLength: 1
                    additionalProperties:
                      enum:
                        - pass
                        - flag
                        - inconclusive
                      type: string
                  createdAt:
                    type: string
                    format: date-time
                  checkResults:
                    type: array
                    items:
                      type: object
                      properties:
                        checkId:
                          type: string
                          minLength: 1
                        providerId:
                          type: string
                          minLength: 1
                        outcome:
                          enum:
                            - pass
                            - flag
                            - inconclusive
                          type: string
                        data: {}
                        reason:
                          anyOf:
                            - type: object
                              properties:
                                code:
                                  enum:
                                    - http
                                    - parse
                                    - provider-semantic
                                    - timeout
                                    - unknown
                                  type: string
                                message:
                                  type: string
                              required:
                                - code
                              additionalProperties: false
                            - type: 'null'
                        createdAt:
                          type: string
                          format: date-time
                      required:
                        - checkId
                        - providerId
                        - outcome
                        - reason
                        - createdAt
                      additionalProperties: false
                required:
                  - id
                  - clientId
                  - checkedBy
                  - results
                  - createdAt
                  - checkResults
                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".

````