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

# Get run issues

> Lists issues detected during a run, deduplicated and aggregated across its test cases. Returns every issue type by default; pass `issueType` to filter to one category (e.g. `accessibility`). Each issue includes its type, severity, tags, a help URL, and the test cases where it was found.



## OpenAPI

````yaml /api-reference/api.json get /v1/run/{shortId}/issues
openapi: 3.0.0
info:
  title: QA.tech API
  version: 1.0.0
  contact:
    name: QA.tech
    url: https://qa.tech
    email: support@qa.tech
  description: API for triggering and managing AI-powered test runs
servers:
  - url: https://api.qa.tech
    description: Production
    variables: {}
security:
  - BearerAuth: []
tags:
  - name: Runs
  - name: Infrastructure
  - name: Test Cases
  - name: Application Builds
  - name: Status badge
  - name: Remote Tunnels
  - name: Chat
  - name: Applications
  - name: Features
  - name: Metrics
  - name: Release Checks
  - name: Projects
paths:
  /v1/run/{shortId}/issues:
    get:
      tags:
        - Runs
      summary: Get run issues
      description: >-
        Lists issues detected during a run, deduplicated and aggregated across
        its test cases. Returns every issue type by default; pass `issueType` to
        filter to one category (e.g. `accessibility`). Each issue includes its
        type, severity, tags, a help URL, and the test cases where it was found.
      operationId: GetRunIssues
      parameters:
        - name: shortId
          in: path
          required: true
          schema:
            type: string
        - name: query
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/RunIssuesQuery'
          explode: false
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunIssuesResponse'
components:
  schemas:
    RunIssuesQuery:
      type: object
      properties:
        issueType:
          allOf:
            - $ref: '#/components/schemas/RunIssueCategory'
          description: >-
            Filter to a single issue category. Omitted returns issues of every
            type.
        projectShortId:
          allOf:
            - $ref: '#/components/schemas/ProjectShortId'
          description: >-
            Target a specific project by its prefixed short ID
            (proj-slug_shortId or proj_shortId), as returned by the projects
            API. Required for organization-scoped API keys; project-scoped keys
            may only pass their own project's short ID.
    RunIssuesResponse:
      type: object
      required:
        - runShortId
        - issues
      properties:
        runShortId:
          type: string
        issues:
          type: array
          items:
            $ref: '#/components/schemas/RunIssue'
      description: Issues detected during a run.
    RunIssueCategory:
      type: string
      enum:
        - accessibility
        - console
        - hosting
        - failed_test
      description: Category of issue detected during a run.
    ProjectShortId:
      type: string
      pattern: ^proj(-.+_.+|_.+)$
    RunIssue:
      type: object
      required:
        - id
        - shortId
        - title
        - description
        - severity
        - issueType
        - helpUrl
        - tags
        - status
        - testCases
      properties:
        id:
          type: string
        shortId:
          type: string
        title:
          type: string
        description:
          type: string
          nullable: true
        severity:
          type: string
        issueType:
          type: string
          description: >-
            The category of the issue, e.g. `ACCESSIBILITY`, `CONSOLE`,
            `HOSTING`, or `FAILED_TEST`.
        helpUrl:
          type: string
          nullable: true
        tags:
          type: array
          items:
            type: string
        status:
          type: string
        testCases:
          type: array
          items:
            $ref: '#/components/schemas/RunIssueTestCase'
          description: Test cases in the run where this issue was detected.
      description: >-
        An issue detected during the run, deduplicated and aggregated across the
        test cases that triggered it.
    RunIssueTestCase:
      type: object
      required:
        - shortId
        - name
      properties:
        shortId:
          type: string
        name:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer

````