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

> List all evaluations for the authenticated user's teams.

This endpoint lists all evaluations (running and completed) from the job repository.
For completed evaluations stored in S3, use GET /evaluations-results/ instead.

Args:
    claims: JWT claims with user and team info
    diamond_domain: Diamond domain orchestrator

Returns:
    Dict with "evaluations" key containing list of evaluation summaries



## OpenAPI

````yaml /openapi/api.json get /v1/evaluations/
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/:
    get:
      tags:
        - Diamond
        - evaluations
      summary: List Team Evaluations
      description: >-
        List all evaluations for the authenticated user's teams.


        This endpoint lists all evaluations (running and completed) from the job
        repository.

        For completed evaluations stored in S3, use GET /evaluations-results/
        instead.


        Args:
            claims: JWT claims with user and team info
            diamond_domain: Diamond domain orchestrator

        Returns:
            Dict with "evaluations" key containing list of evaluation summaries
      operationId: list_team_evaluations_v1_evaluations__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  items:
                    additionalProperties: true
                    type: object
                  type: array
                type: object
                title: Response List Team Evaluations V1 Evaluations  Get

````