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

> Requires scopes: eval:read



## OpenAPI

````yaml /api-reference/openapi.json get /api/evaluations/{id}/playground/export
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}/playground/export:
    get:
      tags:
        - evaluations
      summary: Get evaluations export
      description: 'Requires scopes: eval:read'
      operationId: get_evaluations_id_playground_export
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/GetApiEvaluationsIdPlaygroundExportResponse200ApplicationJson
        '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:
    GetApiEvaluationsIdPlaygroundExportResponse200ApplicationJson:
      type: object
      properties:
        manifest:
          type: object
          properties:
            evaluations:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                  name:
                    type: string
                  dataset:
                    type: string
                  gates:
                    type: object
                    properties:
                      p95LatencyMs:
                        type: string
                      passRate:
                        type: string
                      highSeverityFailures:
                        type: string
                      piiExposure:
                        type: string
                      normalizedJudgeScore:
                        type: string
                      costPerSuccessfulTaskUsd:
                        type: string
                    additionalProperties: false
                  cases:
                    type: object
                    properties:
                      lifecycle:
                        type: string
                      includeSynthetic:
                        type: string
                    additionalProperties: false
                  judges:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        config:
                          type: string
                        calibrationSet:
                          type: string
                        routingProfile:
                          type: string
                      additionalProperties: false
                      required:
                        - id
                  online:
                    type: object
                    properties:
                      monitor:
                        type: string
                      sampling:
                        type: object
                        properties:
                          rate:
                            type: number
                          failureOnly:
                            oneOf:
                              - type: boolean
                                enum:
                                  - false
                              - type: boolean
                                enum:
                                  - true
                          maxDailyCostUsd:
                            type: string
                        additionalProperties: false
                    additionalProperties: false
                additionalProperties: false
                required:
                  - id
                  - name
            version:
              type: number
              enum:
                - 1
            project:
              type: object
              properties:
                name:
                  type: string
                deletionPolicy:
                  oneOf:
                    - type: string
                      enum:
                        - retain
                    - type: string
                      enum:
                        - delete
                    - type: string
                      enum:
                        - archive
                organization:
                  type: string
              additionalProperties: false
              required:
                - name
                - deletionPolicy
            modelGateway:
              type: object
              properties:
                routingProfiles:
                  type: array
                  items:
                    type: object
                    properties:
                      id:
                        type: string
                      objective:
                        type: string
                      useCase:
                        oneOf:
                          - type: string
                            enum:
                              - embedding
                          - type: string
                            enum:
                              - judge
                          - type: string
                            enum:
                              - synthesis
                          - type: string
                            enum:
                              - eval_executor
                          - type: string
                            enum:
                              - classifier
                          - type: string
                            enum:
                              - planner
                          - type: string
                            enum:
                              - summarizer
                          - type: string
                            enum:
                              - tool_agent
                      requireCalibration:
                        oneOf:
                          - type: boolean
                            enum:
                              - false
                          - type: boolean
                            enum:
                              - true
                      maxCostPerCallUsd:
                        type: string
                    additionalProperties: false
                    required:
                      - id
                      - objective
                      - useCase
              additionalProperties: false
              required:
                - routingProfiles
            alerts:
              type: array
              items:
                type: object
                properties:
                  type:
                    type: string
                  id:
                    type: string
                  urlSecretRef:
                    type: string
                additionalProperties: false
                required:
                  - type
                  - id
          additionalProperties: false
          required:
            - evaluations
            - version
            - project
      additionalProperties: false
      required:
        - manifest
    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

````