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

# Get all issues for an eval pipeline run

> Flat list of issues across all eval runs in the pipeline.



## OpenAPI

````yaml /openapi.json get /evals/pipeline-runs/{pipelineRunId}/issues
openapi: 3.1.0
info:
  title: Mathify API
  version: 1.0.0
  description: >-
    Public REST API for generating and retrieving Mathify math animations. See
    app/api/v1/README.md in the source repo for the underlying implementation.
servers:
  - url: https://mathify.dev/api/v1
security: []
tags:
  - name: Projects
  - name: Messages
  - name: Fragments
  - name: Music
  - name: Evals
paths:
  /evals/pipeline-runs/{pipelineRunId}/issues:
    get:
      tags:
        - Evals
      summary: Get all issues for an eval pipeline run
      description: Flat list of issues across all eval runs in the pipeline.
      operationId: getEvalPipelineRunIssues
      parameters:
        - in: path
          name: pipelineRunId
          schema:
            type: string
          required: true
      responses:
        '200':
          description: Issues
          content:
            application/json:
              schema:
                type: object
                properties:
                  pipelineRunId:
                    type: string
                  issues:
                    type: array
                    items:
                      $ref: '#/components/schemas/FlatEvalIssue'
                required:
                  - pipelineRunId
                  - issues
                additionalProperties: false
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: >-
            A valid API key is required, or the account has no credits balance
            (see https://mathify.dev/pricing)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - apiKeyHeader: []
        - bearerAuth: []
components:
  schemas:
    FlatEvalIssue:
      type: object
      properties:
        id:
          type: string
        severity:
          $ref: '#/components/schemas/EvalIssueSeverity'
        category:
          type: string
        frameIndex:
          anyOf:
            - type: integer
              minimum: -9007199254740991
              maximum: 9007199254740991
            - type: 'null'
        frameHint:
          anyOf:
            - type: string
            - type: 'null'
        description:
          type: string
        suggestedFix:
          anyOf:
            - type: string
            - type: 'null'
        evalRunId:
          type: string
        kind:
          $ref: '#/components/schemas/EvalKind'
        createdAt:
          type: string
          format: date-time
          pattern: >-
            ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
      required:
        - id
        - severity
        - category
        - frameIndex
        - frameHint
        - description
        - suggestedFix
        - evalRunId
        - kind
        - createdAt
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        error:
          example: Project not found
          type: string
      required:
        - error
      additionalProperties: false
    EvalIssueSeverity:
      example: MEDIUM
      type: string
      enum:
        - LOW
        - MEDIUM
        - HIGH
    EvalKind:
      example: VISUAL_RUBRIC_JSON
      type: string
      enum:
        - USER_INPUT_SECURITY
        - VISUAL_VALIDATION_JSON
        - DESIGN_VALIDATION_JSON
        - VISUAL_RUBRIC_JSON
        - ENGAGEMENT_RUBRIC_JSON
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Your Mathify API key (`mk_live_<64 hex chars>`), generated at
        /settings/api-keys.
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Same token as apiKeyHeader, passed as `Authorization: Bearer <token>`.'

````