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

# Get Evaluation Report Html

> Download evaluation report HTML from S3 storage.

The HTML report is saved to S3 after the evaluation job completes.
This is the preferred report format - can be viewed in browser or printed to PDF.

Args:
    evaluation_id: UUID of the evaluation
    team_id: Team ID that owns this evaluation (required query parameter)
    claims: JWT claims with user and team info
    diamond_domain: Diamond domain orchestrator (not used, kept for API consistency)
    storage: Evaluation storage adapter

Returns:
    HTML file response

Raises:
    HTTPException: 404 if report not found in storage, 403 if no permission



## OpenAPI

````yaml /openapi/api.json get /v1/evaluation-results/{evaluation_id}/report.html
openapi: 3.1.0
info:
  title: Vijil Console API (Combined)
  description: Combined OpenAPI specification for all vijil-console microservices.
  version: 0.1.0
servers: []
security: []
tags:
  - name: Teams
    description: Authentication, users, and team management
  - name: Agent Environment
    description: Agent, persona, policy, and harness management
  - name: Diamond
    description: Evaluation management and report retrieval
  - name: Dome
    description: Protection, guardrails, and telemetry
  - name: Red Team
    description: Red team campaigns
paths:
  /v1/evaluation-results/{evaluation_id}/report.html:
    get:
      tags:
        - Diamond
        - evaluation-results
      summary: Get Evaluation Report Html
      description: >-
        Download evaluation report HTML from S3 storage.


        The HTML report is saved to S3 after the evaluation job completes.

        This is the preferred report format - can be viewed in browser or
        printed to PDF.


        Args:
            evaluation_id: UUID of the evaluation
            team_id: Team ID that owns this evaluation (required query parameter)
            claims: JWT claims with user and team info
            diamond_domain: Diamond domain orchestrator (not used, kept for API consistency)
            storage: Evaluation storage adapter

        Returns:
            HTML file response

        Raises:
            HTTPException: 404 if report not found in storage, 403 if no permission
      operationId: >-
        get_evaluation_report_html_v1_evaluation_results__evaluation_id__report_html_get
      parameters:
        - name: evaluation_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Evaluation Id
        - name: team_id
          in: query
          required: true
          schema:
            type: string
            format: uuid
            title: Team Id
            description: Team ID that owns this evaluation
          description: Team ID that owns this evaluation
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````