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

# Get scan status

> Retrieve progress and current status for a scan UUID.

# Get scan status

Returns status fields like `status`, `progress_percentage`, `current_step`, and timestamps when available.


## OpenAPI

````yaml openapi/senthrex.json GET /status/{scan_uuid}
openapi: 3.1.0
info:
  title: Senthrex Simulation API
  description: >-
    API for running comprehensive security assessments including subdomain
    enumeration, port scanning, vulnerability scanning, OSINT reconnaissance,
    and security exposure detection
  version: 2.0.0
servers:
  - url: https://rts-senthrex.slayers.tech
    description: Production server
security: []
paths:
  /status/{scan_uuid}:
    get:
      summary: Get Scan Status
      description: Get the status of a scan by UUID.
      operationId: get_scan_status_status__scan_uuid__get
      parameters:
        - name: scan_uuid
          in: path
          required: true
          schema:
            type: string
            title: Scan Uuid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    StatusResponse:
      properties:
        uuid:
          type: string
          title: Uuid
        status:
          type: string
          title: Status
        mode:
          anyOf:
            - type: string
            - type: 'null'
          title: Mode
        progress:
          anyOf:
            - type: string
            - type: 'null'
          title: Progress
        progress_percentage:
          anyOf:
            - type: integer
            - type: 'null'
          title: Progress Percentage
        current_step:
          anyOf:
            - type: string
            - type: 'null'
          title: Current Step
        start_time:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Start Time
        end_time:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: End Time
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        scan_directory:
          anyOf:
            - type: string
            - type: 'null'
          title: Scan Directory
      type: object
      required:
        - uuid
        - status
      title: StatusResponse
      description: |-
        Detailed status information for a running or completed scan.

        Attributes:
            uuid: Unique identifier of the scan.
            status: Current status (``pending``, ``running``, ``completed``, ``error``).
            mode: Scan mode that was requested.
            progress: Human-readable progress string.
            progress_percentage: Numeric progress from 0 to 100.
            current_step: Name of the pipeline step currently executing.
            start_time: Timestamp when the scan was initiated.
            end_time: Timestamp when the scan finished (if applicable).
            error: Error message if the scan failed.
            scan_directory: Filesystem path to the scan output directory.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````