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

> Get evaluation status.

Args:
    evaluation_id: UUID of the evaluation (can be job_id or evaluation_id)
    claims: JWT claims with user and team info
    diamond_domain: Diamond domain orchestrator

Returns:
    Current evaluation status with timestamps (returns Diamond's evaluation_id as source of truth)

Raises:
    HTTPException: 404 if evaluation not found or user lacks access
    HTTPException: 503 if evaluation status cannot be retrieved



## OpenAPI

````yaml /openapi/api.json get /v1/evaluations/{evaluation_id}
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/evaluations/{evaluation_id}:
    get:
      tags:
        - Diamond
        - evaluations
      summary: Get Evaluation
      description: |-
        Get evaluation status.

        Args:
            evaluation_id: UUID of the evaluation (can be job_id or evaluation_id)
            claims: JWT claims with user and team info
            diamond_domain: Diamond domain orchestrator

        Returns:
            Current evaluation status with timestamps (returns Diamond's evaluation_id as source of truth)

        Raises:
            HTTPException: 404 if evaluation not found or user lacks access
            HTTPException: 503 if evaluation status cannot be retrieved
      operationId: get_evaluation_v1_evaluations__evaluation_id__get
      parameters:
        - name: evaluation_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Evaluation Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EvaluationStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EvaluationStatusResponse:
      properties:
        evaluation_id:
          type: string
          format: uuid
          title: Evaluation Id
        status:
          type: string
          title: Status
        scores:
          anyOf:
            - additionalProperties:
                type: number
              type: object
            - type: 'null'
          title: Scores
        created_at:
          type: integer
          title: Created At
        started_at:
          anyOf:
            - type: integer
            - type: 'null'
          title: Started At
        completed_at:
          anyOf:
            - type: integer
            - type: 'null'
          title: Completed At
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        status_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Status Message
      type: object
      required:
        - evaluation_id
        - status
        - created_at
        - started_at
        - completed_at
        - error_message
      title: EvaluationStatusResponse
      description: Response model for evaluation status.
    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

````