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

# Read a run report

> Read a single run report you own by id. Add the wait query parameter to long-poll an active run until it changes, awaiting a verdict without tight polling.



## OpenAPI

````yaml /openapi/public-api.json get /testing/runs/{id}
openapi: 3.1.0
info:
  title: EV Roaming Tester public API
  version: 1.0.0
  description: >-
    Automate EV Roaming Tester with an evrt_ API key: register partner
    connections, run conformance suites and charging journeys, and read the
    graded reports.
servers:
  - url: https://evsim.synergyboat.com/api/v1
security:
  - apiKey: []
tags:
  - name: Connections
  - name: Testing
  - name: Reports
  - name: Usage
  - name: Journeys
paths:
  /testing/runs/{id}:
    get:
      tags:
        - Reports
      summary: Read one owned report, optionally long-polling an active run
      description: >-
        Read a single run report you own by id. Add the wait query parameter to
        long-poll an active run until it changes, awaiting a verdict without
        tight polling.
      operationId: runs_get
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Report'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not found, or owned by another account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    Report:
      type: object
      required:
        - success
        - data
      properties:
        success:
          type: boolean
        data:
          $ref: '#/components/schemas/ReportView'
    Error:
      type: object
      required:
        - success
        - message
      properties:
        success:
          type: boolean
          enum:
            - false
        message:
          type: string
    ReportView:
      type: object
      required:
        - _id
        - status
        - ocpiVersion
      properties:
        _id:
          type: string
        runKind:
          type: string
          enum:
            - conformance
            - journey
        status:
          type: string
          enum:
            - queued
            - running
            - recovering
            - recovery_required
            - completed
            - failed
            - cancelled
            - interrupted
        ocpiVersion:
          type: string
        connectionLabel:
          type: string
        summary:
          type: object
          properties:
            total:
              type: integer
            passed:
              type: integer
            failed:
              type: integer
            warned:
              type: integer
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: An evrt_... API key created in the app under Settings.

````