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

# Get Participant Report



## OpenAPI

````yaml /openapi.json get /v1/participant/report
openapi: 3.1.0
info:
  description: Are we on the same page?
  title: Synapse
  version: 0.1.0
servers: []
security: []
paths:
  /v1/participant/report:
    get:
      tags:
        - v1-platform
      summary: Get Participant Report
      operationId: get_participant_report_v1_participant_report_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ParticipantReport'
          description: Successful Response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
          description: Authentication required
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
          description: State or idempotency conflict
        '410':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
          description: API error
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
          description: Internal server error
      security:
        - ParticipantToken: []
components:
  schemas:
    ParticipantReport:
      properties:
        alignment:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Alignment
        completed_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Completed At
        confidence:
          additionalProperties:
            type: number
          title: Confidence
          type: object
        coverage:
          additionalProperties:
            type: number
          title: Coverage
          type: object
        created_at:
          format: date-time
          title: Created At
          type: string
        evaluation_id:
          format: uuid
          title: Evaluation Id
          type: string
        guardrail_conflicts:
          items:
            additionalProperties: true
            type: object
          title: Guardrail Conflicts
          type: array
        primary_metric:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Primary Metric
        report:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Report
        status:
          enum:
            - pending
            - in_progress
            - needs_review
            - completed
            - failed
            - superseded
            - deleted
          title: Status
          type: string
        sub_scores:
          items:
            additionalProperties: true
            type: object
          title: Sub Scores
          type: array
        unanswered_concepts:
          items:
            type: string
          title: Unanswered Concepts
          type: array
      required:
        - evaluation_id
        - status
        - created_at
      title: ParticipantReport
      type: object
    ApiErrorResponse:
      additionalProperties: false
      properties:
        detail:
          anyOf:
            - $ref: '#/components/schemas/ErrorDetail'
            - type: string
            - items: {}
              type: array
            - additionalProperties: true
              type: object
          title: Detail
      required:
        - detail
      title: ApiErrorResponse
      type: object
    ErrorDetail:
      additionalProperties: false
      description: Stable structured detail returned by versioned API errors.
      properties:
        code:
          title: Code
          type: string
        context:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Context
        message:
          title: Message
          type: string
        request_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Request Id
      required:
        - code
        - message
      title: ErrorDetail
      type: object
  securitySchemes:
    ParticipantToken:
      bearerFormat: spt_...
      description: Short-lived token bound to one participant session.
      scheme: bearer
      type: http

````