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

# Get evaluations status

> Requires scopes: eval:read



## OpenAPI

````yaml /api-reference/openapi.json get /api/evaluations/{id}/auto-sessions/{sessionId}/status
openapi: 3.1.0
info:
  title: EvalGate API
  version: 3.7.6
  description: EvalGate API. See docs/api-contract.md for stability commitments.
servers:
  - url: https://evalgate.com
    description: Production
  - url: http://localhost:3000
    description: Local
security: []
paths:
  /api/evaluations/{id}/auto-sessions/{sessionId}/status:
    get:
      tags:
        - evaluations
      summary: Get evaluations status
      description: 'Requires scopes: eval:read'
      operationId: get_evaluations_id_auto_sessions_sessionId_status
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
        - name: sessionId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/GetApiEvaluationsIdAutoSessionsSessionIdStatusResponse200ApplicationJson
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
      security:
        - bearerAuth:
            - eval:read
components:
  schemas:
    GetApiEvaluationsIdAutoSessionsSessionIdStatusResponse200ApplicationJson:
      type: object
      properties:
        sessionId:
          type: string
        name:
          type: string
        objective:
          type: string
        status:
          oneOf:
            - type: string
              enum:
                - idle
            - type: string
              enum:
                - failed
            - type: string
              enum:
                - queued
            - type: string
              enum:
                - completed
            - type: string
              enum:
                - running
            - type: string
              enum:
                - cancelled
        currentIteration:
          type: number
        maxIterations:
          type: number
        experiments:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              iteration:
                type: number
              strategyTrack:
                type: string
              candidatePatch:
                oneOf:
                  - type: 'null'
                  - type: string
              utilityScore:
                oneOf:
                  - type: 'null'
                  - type: number
              objectiveReduction:
                oneOf:
                  - type: 'null'
                  - type: number
              regressions:
                oneOf:
                  - type: 'null'
                  - type: number
              improvements:
                oneOf:
                  - type: 'null'
                  - type: number
              decision:
                oneOf:
                  - type: 'null'
                  - type: string
              hardVetoReason:
                oneOf:
                  - type: 'null'
                  - type: string
              reflection:
                oneOf:
                  - type: 'null'
                  - type: string
              assertionFailures:
                oneOf:
                  - type: 'null'
                  - type: object
                    additionalProperties:
                      type: number
              createdAt:
                type: string
            additionalProperties: false
            required:
              - id
              - iteration
              - strategyTrack
              - candidatePatch
              - utilityScore
              - objectiveReduction
              - regressions
              - improvements
              - decision
              - hardVetoReason
              - reflection
              - createdAt
        bestExperiment:
          oneOf:
            - type: 'null'
            - type: object
              properties:
                id:
                  type: string
                iteration:
                  type: number
                strategyTrack:
                  type: string
                candidatePatch:
                  oneOf:
                    - type: 'null'
                    - type: string
                utilityScore:
                  oneOf:
                    - type: 'null'
                    - type: number
                objectiveReduction:
                  oneOf:
                    - type: 'null'
                    - type: number
                regressions:
                  oneOf:
                    - type: 'null'
                    - type: number
                improvements:
                  oneOf:
                    - type: 'null'
                    - type: number
                decision:
                  oneOf:
                    - type: 'null'
                    - type: string
                hardVetoReason:
                  oneOf:
                    - type: 'null'
                    - type: string
                reflection:
                  oneOf:
                    - type: 'null'
                    - type: string
                assertionFailures:
                  oneOf:
                    - type: 'null'
                    - type: object
                      additionalProperties:
                        type: number
                createdAt:
                  type: string
              additionalProperties: false
              required:
                - id
                - iteration
                - strategyTrack
                - candidatePatch
                - utilityScore
                - objectiveReduction
                - regressions
                - improvements
                - decision
                - hardVetoReason
                - reflection
                - createdAt
        budgetUsed:
          type: object
          properties:
            iterations:
              type: number
            costUsd:
              type: number
          additionalProperties: false
          required:
            - iterations
            - costUsd
        startedAt:
          oneOf:
            - type: 'null'
            - type: string
        completedAt:
          oneOf:
            - type: 'null'
            - type: string
        stopReason:
          oneOf:
            - type: 'null'
            - type: string
        error:
          oneOf:
            - type: 'null'
            - type: string
        workflowProfile:
          oneOf:
            - type: 'null'
            - type: object
              properties:
                recipeTitle:
                  type: string
                workflowClass:
                  oneOf:
                    - type: string
                      enum:
                        - approval_gated_mutation
                    - type: string
                      enum:
                        - background_execution
                    - type: string
                      enum:
                        - recovery_required
                    - type: string
                      enum:
                        - policy_conflict
                    - type: string
                      enum:
                        - handoff_heavy
                    - type: string
                      enum:
                        - memory_sensitive
                    - type: string
                      enum:
                        - parallel_tool_use
                autonomyLevel:
                  oneOf:
                    - type: string
                      enum:
                        - manual
                    - type: string
                      enum:
                        - default_approvals
                    - type: string
                      enum:
                        - bypass_approvals
                    - type: string
                      enum:
                        - autopilot
                approvalMode:
                  oneOf:
                    - type: string
                      enum:
                        - human_review
                    - type: string
                      enum:
                        - none
                    - type: string
                      enum:
                        - policy_guided
                    - type: string
                      enum:
                        - auto_with_audit
                memoryMode:
                  oneOf:
                    - type: string
                      enum:
                        - session
                    - type: string
                      enum:
                        - none
                    - type: string
                      enum:
                        - persistent
                    - type: string
                      enum:
                        - mixed
                backgroundExecution:
                  type: boolean
                requiredHooks:
                  type: array
                  items:
                    oneOf:
                      - type: string
                        enum:
                          - session_start
                      - type: string
                        enum:
                          - pre_plan
                      - type: string
                        enum:
                          - pre_tool
                      - type: string
                        enum:
                          - post_tool
                      - type: string
                        enum:
                          - pre_write
                      - type: string
                        enum:
                          - pre_handoff
                      - type: string
                        enum:
                          - on_error
                      - type: string
                        enum:
                          - session_end
                linkedFailureModes:
                  type: array
                  items:
                    type: string
                successMetrics:
                  type: array
                  items:
                    type: string
                guardrails:
                  type: array
                  items:
                    type: string
                recommendedIterations:
                  type: number
                source:
                  oneOf:
                    - type: string
                      enum:
                        - coverage_gap
                    - type: string
                      enum:
                        - failure
              additionalProperties: false
              required:
                - recipeTitle
                - workflowClass
                - autonomyLevel
                - approvalMode
                - memoryMode
                - backgroundExecution
                - requiredHooks
                - linkedFailureModes
                - successMetrics
                - guardrails
                - recommendedIterations
                - source
        runtimeSummary:
          oneOf:
            - type: 'null'
            - type: object
              properties:
                workflowRunId:
                  type: number
                traceId:
                  type: number
                executionMode:
                  oneOf:
                    - type: string
                      enum:
                        - analysis_only
                    - type: string
                      enum:
                        - single_agent
                    - type: string
                      enum:
                        - parallel_swarm
                finalStatus:
                  oneOf:
                    - type: string
                      enum:
                        - failed
                    - type: string
                      enum:
                        - completed
                stopReason:
                  oneOf:
                    - type: 'null'
                    - type: string
                approvalState:
                  type: string
                hookCount:
                  type: number
                memoryReadCount:
                  type: number
                checkpointCreated:
                  type: boolean
                handoffCount:
                  type: number
                debugSnapshotCount:
                  type: number
                decisionCount:
                  type: number
              additionalProperties: false
              required:
                - executionMode
                - finalStatus
                - stopReason
                - approvalState
                - hookCount
                - memoryReadCount
                - checkpointCreated
                - handoffCount
                - debugSnapshotCount
                - decisionCount
        workflowRun:
          oneOf:
            - type: 'null'
            - type: object
              properties:
                id:
                  type: number
                status:
                  type: string
                handoffCount:
                  oneOf:
                    - type: 'null'
                    - type: number
                agentCount:
                  oneOf:
                    - type: 'null'
                    - type: number
                completedAt:
                  oneOf:
                    - type: 'null'
                    - type: string
              additionalProperties: false
              required:
                - id
                - status
                - handoffCount
                - agentCount
                - completedAt
        tasteSnapshot:
          oneOf:
            - type: 'null'
            - type: object
              properties:
                priorities:
                  type: array
                  items:
                    type: string
                forbiddenBehaviors:
                  type: array
                  items:
                    type: string
                rubricText:
                  type: string
                judgeCriteriaRef:
                  type: number
                objectiveTargets:
                  type: array
                  items:
                    type: object
                    properties:
                      metric:
                        type: string
                      operator:
                        oneOf:
                          - type: string
                            enum:
                              - gte
                          - type: string
                            enum:
                              - lte
                      value:
                        type: number
                      weight:
                        type: number
                    additionalProperties: false
                    required:
                      - metric
                      - operator
                      - value
                rubricHash:
                  type: string
                frozenAt:
                  type: string
                schemaVersion:
                  type: number
                  enum:
                    - 1
              additionalProperties: false
              required:
                - priorities
                - forbiddenBehaviors
                - frozenAt
                - schemaVersion
        isSwarmMode:
          type: boolean
        latestRoundSummary:
          oneOf:
            - type: 'null'
            - type: object
              properties:
                roundNumber:
                  type: number
                agentCount:
                  type: number
                winsApplied:
                  type: number
                completedAt:
                  type: string
              additionalProperties: false
              required:
                - roundNumber
                - agentCount
                - winsApplied
                - completedAt
      additionalProperties: false
      required:
        - sessionId
        - name
        - objective
        - status
        - currentIteration
        - maxIterations
        - experiments
        - bestExperiment
        - budgetUsed
        - startedAt
        - completedAt
        - stopReason
        - error
        - workflowProfile
        - runtimeSummary
        - workflowRun
        - tasteSnapshot
        - isSwarmMode
        - latestRoundSummary
    ApiError:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              enum:
                - UNAUTHORIZED
                - FORBIDDEN
                - NOT_FOUND
                - VALIDATION_ERROR
                - RATE_LIMITED
                - CONFLICT
                - INTERNAL_ERROR
                - SERVICE_UNAVAILABLE
                - QUOTA_EXCEEDED
                - NO_ORG_MEMBERSHIP
                - CROSS_ORG_REFERENCE
                - INCOMPLETE
                - MALFORMED
            message:
              type: string
            details: {}
            requestId:
              type: string
              format: uuid
          required:
            - code
            - message
      required:
        - error
  responses:
    ValidationError:
      description: Validation error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Conflict:
      description: Conflict
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or Session Token

````