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

# Get Detailed Individual Runs For Group

> List individual executions within a simulation group with hydrated workflow run details.

This endpoint provides enriched data for each individual run including:
- Links to selected and counter workflow runs
- Workflow names and statuses
- Evaluation run IDs and statuses (if configured)



## OpenAPI

````yaml https://api-prod.interactly.ai/api-docs/workflows/api.json get /workflows/v1/simulation-runs/{group_id}/executions/detailed
openapi: 3.1.0
info:
  title: Interactly API
  description: API for building interactly.ai services
  version: 1.1.0
  contact:
    name: Interactly
    url: https://interactly.ai
    email: developers@interactly.ai
servers:
  - url: https://api-prod.interactly.ai
    description: API Server
security: []
paths:
  /workflows/v1/simulation-runs/{group_id}/executions/detailed:
    get:
      tags:
        - Simulations
      summary: Get Detailed Individual Runs For Group
      description: >-
        List individual executions within a simulation group with hydrated
        workflow run details.


        This endpoint provides enriched data for each individual run including:

        - Links to selected and counter workflow runs

        - Workflow names and statuses

        - Evaluation run IDs and statuses (if configured)
      operationId: >-
        workflow_service_get_detailed_individual_runs_for_group_v1_simulation_runs__group_id__executions_detailed_get
      parameters:
        - name: group_id
          in: path
          required: true
          schema:
            $ref: '#/components/schemas/PydanticObjectId'
        - name: size
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: Number of items per page
            default: 300
            title: Size
          description: Number of items per page
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: Page number
            default: 1
            title: Page
          description: Page number
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Search keywords
            title: Search
          description: Search keywords
        - name: start
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: Filter by start time (ISO 8601 format)
            title: Start
          description: Filter by start time (ISO 8601 format)
        - name: end
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: Filter by end time (ISO 8601 format)
            title: End
          description: Filter by end time (ISO 8601 format)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DetailedIndividualRunListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearer: []
components:
  schemas:
    PydanticObjectId:
      type: string
      maxLength: 24
      minLength: 24
      pattern: ^[0-9a-f]{24}$
      example: 5eb7cf5a86d9755df3a6c593
    DetailedIndividualRunListResponse:
      properties:
        individual_runs:
          items:
            $ref: '#/components/schemas/DetailedIndividualRun'
          type: array
          title: Individual Runs
          description: List of detailed individual simulation runs
        total:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total
          description: Total count
      type: object
      title: DetailedIndividualRunListResponse
      description: >-
        Response model for detailed individual simulation runs with hydrated
        workflow info.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DetailedIndividualRun:
      properties:
        id:
          type: string
          title: Id
          description: Individual run ID
        run_index:
          type: integer
          title: Run Index
          description: Index of the run within the group (1-based)
        status:
          type: string
          title: Status
          description: Status of the individual run
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
          description: Error message if failed
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
          description: When the run was created
        evaluation_result:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Evaluation Result
          description: Evaluation result scores
        selected_workflow_run_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Selected Workflow Run Id
        selected_workflow_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Selected Workflow Name
        selected_workflow_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Selected Workflow Status
        selected_evaluation_run_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Selected Evaluation Run Id
        selected_evaluation_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Selected Evaluation Status
        counter_workflow_run_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Counter Workflow Run Id
        counter_workflow_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Counter Workflow Name
        counter_workflow_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Counter Workflow Status
        counter_evaluation_run_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Counter Evaluation Run Id
        counter_evaluation_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Counter Evaluation Status
      type: object
      required:
        - id
        - run_index
        - status
      title: DetailedIndividualRun
      description: Individual simulation run with hydrated workflow run details.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: Bearer
      type: http
      description: >-
        Retrieve your API Key from [Dashboard API Keys
        Section](https://dashboard.interactly.ai/api-keys).

````