> ## 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 eval packs packId

> Public endpoint (no bearer token required).



## OpenAPI

````yaml /api-reference/openapi.json get /api/eval-packs/{packId}
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/eval-packs/{packId}:
    get:
      tags:
        - eval packs
      summary: Get eval packs packId
      description: Public endpoint (no bearer token required).
      operationId: get_eval_packs_packId
      parameters:
        - name: packId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/GetApiEvalPacksPackIdResponse200ApplicationJson
        '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: []
components:
  schemas:
    GetApiEvalPacksPackIdResponse200ApplicationJson:
      type: object
      properties:
        pack:
          type: object
          properties:
            schemaVersion:
              type: string
              enum:
                - evalgate.eval-pack.v1
            id:
              type: string
            version:
              type: string
            name:
              type: string
            domain:
              oneOf:
                - type: string
                  enum:
                    - healthcare
                - type: string
                  enum:
                    - legal
                - type: string
                  enum:
                    - support
                - type: string
                  enum:
                    - coding
                - type: string
                  enum:
                    - financial
            summary:
              type: string
            riskNotice:
              type: string
            jurisdictions:
              type: array
              items:
                type: string
            tags:
              type: array
              items:
                type: string
            releaseGate:
              type: object
              properties:
                minimumScenarioPassRate:
                  type: number
                minimumCriterionPassRate:
                  type: number
                requireAllCritical:
                  type: boolean
                  enum:
                    - true
                maxCriticalFailures:
                  type: number
                  enum:
                    - 0
                minimumJudgeAgreement:
                  type: number
              additionalProperties: false
              required:
                - minimumScenarioPassRate
                - minimumCriterionPassRate
                - requireAllCritical
                - maxCriticalFailures
                - minimumJudgeAgreement
            scenarios:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                  title:
                    type: string
                  stage:
                    oneOf:
                      - type: string
                        enum:
                          - build
                      - type: string
                        enum:
                          - investigate
                      - type: string
                        enum:
                          - resolve
                      - type: string
                        enum:
                          - operate
                  difficulty:
                    oneOf:
                      - type: string
                        enum:
                          - intermediate
                      - type: string
                        enum:
                          - advanced
                      - type: string
                        enum:
                          - expert
                  riskTier:
                    oneOf:
                      - type: string
                        enum:
                          - high
                      - type: string
                        enum:
                          - critical
                      - type: string
                        enum:
                          - moderate
                  instructions:
                    type: string
                  fixtures:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        title:
                          type: string
                        mimeType:
                          oneOf:
                            - type: string
                              enum:
                                - text/plain
                            - type: string
                              enum:
                                - text/markdown
                            - type: string
                              enum:
                                - application/json
                            - type: string
                              enum:
                                - text/x-diff
                            - type: string
                              enum:
                                - text/x-sql
                            - type: string
                              enum:
                                - text/x-typescript
                        content:
                          type: string
                        provenance:
                          type: object
                          properties:
                            source:
                              type: string
                              enum:
                                - evalgate_first_party_synthetic
                            fictional:
                              type: boolean
                              enum:
                                - true
                            createdFor:
                              type: string
                          additionalProperties: false
                          required:
                            - source
                            - fictional
                            - createdFor
                      additionalProperties: false
                      required:
                        - id
                        - title
                        - mimeType
                        - content
                        - provenance
                  deliverables:
                    type: array
                    items:
                      type: string
                  criteria:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        title:
                          type: string
                        evaluator:
                          oneOf:
                            - type: string
                              enum:
                                - trajectory
                            - type: string
                              enum:
                                - output_assertion
                            - type: string
                              enum:
                                - llm_judge
                        critical:
                          type: boolean
                        weight:
                          type: number
                        matchCriteria:
                          type: string
                        deliverables:
                          type: array
                          items:
                            type: string
                        sources:
                          type: array
                          items:
                            type: string
                        assertion:
                          oneOf:
                            - type: object
                              properties:
                                operator:
                                  type: string
                                  enum:
                                    - includes_all
                                values:
                                  type: array
                                  items:
                                    type: string
                                caseSensitive:
                                  type: boolean
                              additionalProperties: false
                              required:
                                - operator
                                - values
                                - caseSensitive
                            - type: object
                              properties:
                                operator:
                                  type: string
                                  enum:
                                    - includes_none
                                values:
                                  type: array
                                  items:
                                    type: string
                                caseSensitive:
                                  type: boolean
                              additionalProperties: false
                              required:
                                - operator
                                - values
                                - caseSensitive
                            - type: object
                              properties:
                                operator:
                                  type: string
                                  enum:
                                    - matches
                                pattern:
                                  type: string
                                flags:
                                  type: string
                              additionalProperties: false
                              required:
                                - operator
                                - pattern
                                - flags
                        trajectory:
                          type: object
                          properties:
                            requiredTools:
                              type: array
                              items:
                                type: string
                            forbiddenTools:
                              type: array
                              items:
                                type: string
                            maxToolCalls:
                              type: number
                          additionalProperties: false
                          required:
                            - requiredTools
                            - forbiddenTools
                      additionalProperties: false
                      required:
                        - id
                        - title
                        - evaluator
                        - critical
                        - weight
                        - matchCriteria
                        - deliverables
                        - sources
                  adversarialVariants:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        description:
                          type: string
                        expectedBehavior:
                          type: string
                      additionalProperties: false
                      required:
                        - id
                        - description
                        - expectedBehavior
                additionalProperties: false
                required:
                  - id
                  - title
                  - stage
                  - difficulty
                  - riskTier
                  - instructions
                  - fixtures
                  - deliverables
                  - criteria
                  - adversarialVariants
          additionalProperties: false
          required:
            - schemaVersion
            - id
            - version
            - name
            - domain
            - summary
            - riskNotice
            - jurisdictions
            - tags
            - releaseGate
            - scenarios
        manifestHash:
          type: string
      additionalProperties: false
      required:
        - pack
        - manifestHash
    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'

````