> ## 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 journey run status

> Read the durable status of a journey run you own, including its execution integrity and any recovery options the server offers.



## OpenAPI

````yaml /openapi/public-api.json get /testing/journey-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/journey-runs/{id}:
    get:
      tags:
        - Journeys
      summary: Read durable run status, integrity and recovery options
      description: >-
        Read the durable status of a journey run you own, including its
        execution integrity and any recovery options the server offers.
      operationId: journeys_get_journey_runs_id
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JourneyRun'
        '400':
          description: Malformed input
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '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:
    JourneyRun:
      type: object
      required:
        - success
        - data
      properties:
        success:
          type: boolean
        data:
          type: object
          required:
            - runId
            - reportId
            - status
            - runIntegrity
            - recoveryVersion
          properties:
            runId:
              type: string
            reportId:
              type: string
            status:
              type: string
            runIntegrity:
              type: string
              enum:
                - valid
                - degraded
                - invalid
              description: Our execution evidence; never a verdict about the target.
            recoveryVersion:
              type: integer
            recoveryOptions:
              type: array
              description: Server-computed decisions; the only ones the API accepts.
              items:
                type: object
                properties:
                  decision:
                    type: string
                  label:
                    type: string
                  description:
                    type: string
            workerHealthy:
              type: boolean
    Error:
      type: object
      required:
        - success
        - message
      properties:
        success:
          type: boolean
          enum:
            - false
        message:
          type: string
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: An evrt_... API key created in the app under Settings.

````