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

# Get Assessment

> Retrieve summary details for a single assessment, including target, method, and normalized status.



## OpenAPI

````yaml /openapi.json get /v1/assessments/{assessment_id}
openapi: 3.1.0
info:
  title: MindFort API
  version: 1.0.0
  description: >-
    The MindFort Public API allows you to programmatically trigger assessments
    and tasks, browse targets and findings, and manage finding triage state.
    Authenticate using a Bearer API key generated from the MindFort dashboard.
servers:
  - url: https://api.mindfort.app
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/assessments/{assessment_id}:
    get:
      tags:
        - Assessments
      summary: Get Assessment
      description: >-
        Retrieve summary details for a single assessment, including target,
        method, and normalized status.
      operationId: getAssessment
      parameters:
        - name: assessment_id
          in: path
          required: true
          description: UUID of the assessment
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Assessment returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssessmentSummary'
        '400':
          description: Invalid assessment_id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized – missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Assessment not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    AssessmentSummary:
      type: object
      description: >-
        Assessment fields returned by the assessments list endpoint. Internal
        workflow, plan, and session fields are not included.
      properties:
        id:
          type: string
          format: uuid
          description: UUID of the assessment
        target_id:
          type: string
          format: uuid
          description: UUID of the assessed target
        target_name:
          type: string
          description: Name of the assessed target
        assessment_type:
          type: string
          enum:
            - black-box
            - white-box
          description: >-
            Assessment type. `white-box` includes code assessment; `black-box`
            does not.
        assessment_method:
          type: string
          enum:
            - turbo
            - balanced
            - deep
          description: Assessment method
        status:
          type: string
          enum:
            - active
            - completed
            - failed
            - canceled
          description: Normalized assessment status
        started_at:
          type:
            - string
            - 'null'
          format: date-time
          description: Assessment start timestamp
        completed_at:
          type:
            - string
            - 'null'
          format: date-time
          description: Assessment completion timestamp
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message
        request_id:
          type: string
          description: Unique request identifier for debugging
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````