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

# List Completed Evaluations

> List completed evaluations from S3 storage for a specific team.

This endpoint lists only completed evaluations that have results stored in S3.
It requires the team_id as a query parameter and respects permission checks.
Supports paging via limit (default 10) and offset.

Args:
    team_id: Team ID to list evaluations for (required query parameter)
    limit: Max number of results (default 10, max 100)
    offset: Number of results to skip for paging
    claims: JWT claims with user and team info
    diamond_domain: Diamond domain for listing evaluations (newest-first sort + paginate)
    agent_adapter: Agent registry adapter for looking up agent names

Returns:
    List of completed evaluations with evaluation_id, team_id, agent information, and total count

Raises:
    HTTPException: 401 if unauthorized, 403 if no permission



## OpenAPI

````yaml /openapi/api.json get /v1/evaluation-results/
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/:
    get:
      tags:
        - Diamond
        - evaluation-results
      summary: List Completed Evaluations
      description: >-
        List completed evaluations from S3 storage for a specific team.


        This endpoint lists only completed evaluations that have results stored
        in S3.

        It requires the team_id as a query parameter and respects permission
        checks.

        Supports paging via limit (default 10) and offset.


        Args:
            team_id: Team ID to list evaluations for (required query parameter)
            limit: Max number of results (default 10, max 100)
            offset: Number of results to skip for paging
            claims: JWT claims with user and team info
            diamond_domain: Diamond domain for listing evaluations (newest-first sort + paginate)
            agent_adapter: Agent registry adapter for looking up agent names

        Returns:
            List of completed evaluations with evaluation_id, team_id, agent information, and total count

        Raises:
            HTTPException: 401 if unauthorized, 403 if no permission
      operationId: list_completed_evaluations_v1_evaluation_results__get
      parameters:
        - name: team_id
          in: query
          required: true
          schema:
            type: string
            format: uuid
            title: Team Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Maximum number of results to return
            default: 10
            title: Limit
          description: Maximum number of results to return
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Number of results to skip for paging
            default: 0
            title: Offset
          description: Number of results to skip for paging
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EvaluationListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EvaluationListResponse:
      properties:
        results:
          items:
            $ref: '#/components/schemas/EvaluationListItem'
          type: array
          title: Results
          description: List of completed evaluations with results in S3 (current page)
        total:
          type: integer
          title: Total
          description: Total number of completed evaluations (before limit/offset)
      type: object
      required:
        - total
      title: EvaluationListResponse
      description: |-
        Response model for listing completed evaluations.
            
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EvaluationListItem:
      properties:
        evaluation_id:
          type: string
          format: uuid
          title: Evaluation Id
          description: Evaluation ID
        team_id:
          type: string
          format: uuid
          title: Team Id
          description: Team ID that owns this evaluation
        created_by:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Created By
          description: User ID who created this evaluation
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
          title: Created At
          description: Unix timestamp when the evaluation was created
        completed_at:
          anyOf:
            - type: integer
            - type: 'null'
          title: Completed At
          description: >-
            Unix timestamp when the evaluation completed (from S3 metadata, no
            file read)
        agent_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Agent Id
          description: Agent ID that was evaluated
        agent_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Agent Name
          description: Name of the agent that was evaluated
      type: object
      required:
        - evaluation_id
        - team_id
      title: EvaluationListItem
      description: Item in the list of completed evaluations.
    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

````