---
title: "Get Individual Runs For Group"
method: GET
path: "/workflows/v1/simulation-runs/{group_id}/executions"
tags: ["Simulations"]
---

# Get Individual Runs For Group

`GET /workflows/v1/simulation-runs/{group_id}/executions`

List individual executions (runs) within a simulation group.

## Path parameters

- `group_id` string, required

## Query parameters

- `size` integer — Number of items per page
- `page` integer — Page number
- `search` string, nullable — Search keywords
- `start` string, date-time, nullable — Filter by start time (ISO 8601 format)
- `end` string, date-time, nullable — Filter by end time (ISO 8601 format)

## Response `200`

Successful Response

- IndividualSimulationRunListResponse — Response model for a list of individual simulation runs. Contains a list of IndividualSimulationRunModel objects.
  - `individual_runs` IndividualSimulationRunModel[] — List of individual simulation runs
    - `team_id` string, nullable — ID of the team that owns this edge
    - `created_by` string, nullable — ID of the user who created this edge
    - `updated_by` string, nullable — ID of the user who last updated this edge
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `_id` string
    - `simulation_group_id` string, required
    - `simulation_config_id` string, required
    - `selected_workflow_run_id` string
    - `counter_workflow_run_id` string
    - `status` 'pending' | 'running' | 'completed' | 'failed' | 'cancelled'
    - `result` object, nullable — Result or summary of the run
    - `error_message` string, nullable — Error message if the run failed
  - `total` integer, nullable — Total number of individual runs available

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/interactly/apis/interactly-api-3.md) · [All operations](https://skmtc.net/interactly/apis/interactly-api-3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/interactly/interactly-api-3/versions/9f4e7dc7e094/schema)
