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

# Screening status



## OpenAPI

````yaml api/openapi.json GET /screenings/{id}
openapi: 3.1.0
info:
  title: Amoreg Regulatory Knowledge API
  version: 1.0.0
  description: >-
    Hybrid semantic + keyword search over Amoreg's regulatory knowledge base,
    scoped to the jurisdictions enabled for your organisation. Prepaid credits
    in GBP: 2p per search, 2p per screening keyword.
servers:
  - url: https://app.amoreg.com/api/v1
security:
  - apiKey: []
paths:
  /screenings/{id}:
    get:
      summary: Screening run status and results
      operationId: getScreening
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Run state; `results` is set once status is completed
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  status:
                    type: string
                    enum:
                      - pending
                      - running
                      - completed
                      - failed
                  keywords:
                    type: array
                    items:
                      type: string
                  jurisdictions:
                    type: array
                    items:
                      type: string
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        keyword:
                          type: string
                        matches:
                          type: array
                          items:
                            $ref: '#/components/schemas/SearchMatch'
                  error:
                    type: string
                  createdAt:
                    type: string
                    format: date-time
                  completedAt:
                    type: string
                    format: date-time
components:
  schemas:
    SearchMatch:
      type: object
      properties:
        content:
          type: string
        score:
          type: number
        source:
          type: string
        citationPath:
          type: string
        jurisdictionSlugs:
          type: array
          items:
            type: string
      required:
        - content
        - score
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        Organisation API key created in the dashboard (format: amrg_live_…).
        Sent as `Authorization: Bearer amrg_live_…`.

````