Unisson runs API

The runs API from Unisson — 14 operation(s) for runs.

Operations 15

POST /api/v1/runs/trigger Trigger Run #
GET /api/v1/runs List Runs #
GET /api/v1/runs/attention-counts Get Attention Counts #
GET /api/v1/runs/status-counts Get Status Counts #
GET /api/v1/runs/activity Get Run Activity #
GET /api/v1/runs/{run_id} Get Run #
DELETE /api/v1/runs/{run_id} Delete Run #
POST /api/v1/runs/{run_id}/resume Resume Run #
GET /api/v1/runs/{run_id}/liveview Get Run Liveview Url #
GET /api/v1/runs/{run_id}/recording Get Run Recording #
GET /api/v1/runs/{run_id}/result-screenshots Get Run Result Screenshots #
GET /api/v1/runs/{run_id}/children Get Child Runs #
POST /api/v1/runs/{run_id}/cancel Cancel Run #
GET /api/v1/runs/{run_id}/steps Get Run Steps #
POST /api/v1/runs/{run_id}/report-issue Report Issue #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/unisson-runs-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

unisson-runs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Unisson agent-evals Runs API
  version: 1.0.0
servers:
- url: https://api.unisson.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: runs
paths:
  /api/v1/runs/trigger:
    post:
      tags:
      - runs
      summary: Trigger Run
      description: 'Trigger a new run (from web UI or API) - Rate limited: 30/min per IP


        For Slack-triggered runs, use the /integrations/slack/events endpoint instead'
      operationId: trigger_run_api_v1_runs_trigger_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunTriggerRequest'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
  /api/v1/runs:
    get:
      tags:
      - runs
      summary: List Runs
      description: List all runs for the organization
      operationId: list_runs_api_v1_runs_get
      security:
      - HTTPBearer: []
      parameters:
      - name: page
        in: query
        required: false
        schema:
          type: integer
          minimum: 1
          default: 1
          title: Page
      - name: page_size
        in: query
        required: false
        schema:
          type: integer
          maximum: 100
          minimum: 1
          default: 20
          title: Page Size
      - name: status_filter
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by status. Accepts a single value (e.g. 'running') or a comma-separated list (e.g. 'running,coordinating') for tab-style grouping in the dashboard.
          title: Status Filter
        description: Filter by status. Accepts a single value (e.g. 'running') or a comma-separated list (e.g. 'running,coordinating') for tab-style grouping in the dashboard.
      - name: triggered_from
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by trigger source
          title: Triggered From
        description: Filter by trigger source
      - name: run_type
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by run type (task, exploration)
          title: Run Type
        description: Filter by run type (task, exploration)
      - name: search
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Search request text
          title: Search
        description: Search request text
      - name: triggered_by_name
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Search by triggered-by user name
          title: Triggered By Name
        description: Search by triggered-by user name
      - name: created_after
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: Filter runs created after this datetime
          title: Created After
        description: Filter runs created after this datetime
      - name: created_before
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: Filter runs created before this datetime
          title: Created Before
        description: Filter runs created before this datetime
      - name: chat_conversation_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter to runs spawned from a specific chat conversation.
          title: Chat Conversation Id
        description: Filter to runs spawned from a specific chat conversation.
      - name: agent_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter to runs scoped to a specific agent.
          title: Agent Id
        description: Filter to runs scoped to a specific agent.
      - name: customer_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter to runs associated with a specific customer.
          title: Customer Id
        description: Filter to runs associated with a specific customer.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/attention-counts:
    get:
      tags:
      - runs
      summary: Get Attention Counts
      description: 'Get counts of runs needing attention (for sidebar badges).


        Returns counts of runs with ''authentication_required'' or ''waiting_for_input'' status,

        grouped by run type (task vs exploration).


        Note: Scouts have is_exploration=False but exploration_id IS NOT NULL,

        so we use exploration_id to determine if a run belongs to an exploration.'
      operationId: get_attention_counts_api_v1_runs_attention_counts_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - HTTPBearer: []
  /api/v1/runs/status-counts:
    get:
      tags:
      - runs
      summary: Get Status Counts
      description: 'Counts of runs grouped by status, for the same filter scope as /runs.


        Mirrors /runs''s filter set except `status_filter` (which would defeat the

        purpose). Used by the Runs dashboard''s tab counters so each tab''s count

        reflects all runs in the current timeframe + filters, not just the

        currently-selected status. Counts always include every value in

        `_RUN_STATUS_KEYS`, defaulting to 0 — frontends can sum into groups

        without conditional logic.'
      operationId: get_status_counts_api_v1_runs_status_counts_get
      security:
      - HTTPBearer: []
      parameters:
      - name: triggered_from
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by trigger source
          title: Triggered From
        description: Filter by trigger source
      - name: run_type
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by run type (task, exploration)
          title: Run Type
        description: Filter by run type (task, exploration)
      - name: search
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Search request text
          title: Search
        description: Search request text
      - name: triggered_by_name
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Search by triggered-by user name
          title: Triggered By Name
        description: Search by triggered-by user name
      - name: created_after
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: Filter runs created after this datetime
          title: Created After
        description: Filter runs created after this datetime
      - name: created_before
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: Filter runs created before this datetime
          title: Created Before
        description: Filter runs created before this datetime
      - name: chat_conversation_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter to runs spawned from a specific chat conversation.
          title: Chat Conversation Id
        description: Filter to runs spawned from a specific chat conversation.
      - name: agent_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter to runs scoped to a specific agent.
          title: Agent Id
        description: Filter to runs scoped to a specific agent.
      - name: customer_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter to runs associated with a specific customer.
          title: Customer Id
        description: Filter to runs associated with a specific customer.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/activity:
    get:
      tags:
      - runs
      summary: Get Run Activity
      description: 'Daily run counts within the window plus the previous-period total.


        Powers the Runs dashboard hero card''s sparkline + trend % indicator.

        Mirrors the filter scope of /runs and /runs/status-counts (status filter

        intentionally omitted — the hero card aggregates across statuses).


        `previous_total` is the count of runs in the window of equal duration

        immediately preceding [created_after, created_before]. Returned as

        `null` when no `created_after` is provided (the "all time" case has no

        prior period to compare against).'
      operationId: get_run_activity_api_v1_runs_activity_get
      security:
      - HTTPBearer: []
      parameters:
      - name: triggered_from
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by trigger source
          title: Triggered From
        description: Filter by trigger source
      - name: run_type
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by run type (task, exploration)
          title: Run Type
        description: Filter by run type (task, exploration)
      - name: search
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Search request text
          title: Search
        description: Search request text
      - name: triggered_by_name
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Search by triggered-by user name
          title: Triggered By Name
        description: Search by triggered-by user name
      - name: created_after
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: Window start (defaults to earliest run for the org)
          title: Created After
        description: Window start (defaults to earliest run for the org)
      - name: created_before
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          description: Window end (defaults to now)
          title: Created Before
        description: Window end (defaults to now)
      - name: chat_conversation_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter to runs spawned from a specific chat conversation.
          title: Chat Conversation Id
        description: Filter to runs spawned from a specific chat conversation.
      - name: agent_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter to runs scoped to a specific agent.
          title: Agent Id
        description: Filter to runs scoped to a specific agent.
      - name: customer_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter to runs associated with a specific customer.
          title: Customer Id
        description: Filter to runs associated with a specific customer.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/{run_id}:
    get:
      tags:
      - runs
      summary: Get Run
      description: Get detailed information about a specific run
      operationId: get_run_api_v1_runs__run_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      - name: include_child_steps
        in: query
        required: false
        schema:
          type: boolean
          default: true
          title: Include Child Steps
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunDetailResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - runs
      summary: Delete Run
      description: Soft delete a run and its child runs/scouts.
      operationId: delete_run_api_v1_runs__run_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/{run_id}/resume:
    post:
      tags:
      - runs
      summary: Resume Run
      description: 'Resume a run after user has completed authentication or answered a clarifying question.


        For authentication: Just call this endpoint without a body.

        For clarifying questions: Include {"answer": "user''s answer"} in the body.'
      operationId: resume_run_api_v1_runs__run_id__resume_post
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunResumeRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/{run_id}/liveview:
    get:
      tags:
      - runs
      summary: Get Run Liveview Url
      description: Get the LiveView URL for a run's browser session (for secure authentication)
      operationId: get_run_liveview_url_api_v1_runs__run_id__liveview_get
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/{run_id}/recording:
    get:
      tags:
      - runs
      summary: Get Run Recording
      description: 'Get video recording URL for a completed run.


        Returns: { "run_id": ..., "url": <presigned_url> }'
      operationId: get_run_recording_api_v1_runs__run_id__recording_get
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/{run_id}/result-screenshots:
    get:
      tags:
      - runs
      summary: Get Run Result Screenshots
      description: 'Get presigned URLs for result screenshots saved by the agent.


        Returns: [{ "url": <presigned_url>, "caption": str, "step_number": int }, ...]'
      operationId: get_run_result_screenshots_api_v1_runs__run_id__result_screenshots_get
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/{run_id}/children:
    get:
      tags:
      - runs
      summary: Get Child Runs
      description: Return scouts for an exploration coordinator (empty for task runs).
      operationId: get_child_runs_api_v1_runs__run_id__children_get
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RunResponse'
                title: Response Get Child Runs Api V1 Runs  Run Id  Children Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/{run_id}/cancel:
    post:
      tags:
      - runs
      summary: Cancel Run
      description: Cancel a running execution (cascades to child runs)
      operationId: cancel_run_api_v1_runs__run_id__cancel_post
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/{run_id}/steps:
    get:
      tags:
      - runs
      summary: Get Run Steps
      description: Get all steps for a run (for real-time updates)
      operationId: get_run_steps_api_v1_runs__run_id__steps_get
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items: {}
                title: Response Get Run Steps Api V1 Runs  Run Id  Steps Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/runs/{run_id}/report-issue:
    post:
      tags:
      - runs
      summary: Report Issue
      description: Report an issue with a run
      operationId: report_issue_api_v1_runs__run_id__report_issue_post
      security:
      - HTTPBearer: []
      parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Run Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReportIssueRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReportIssueResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ScoutSummary:
      properties:
        id:
          type: string
          format: uuid4
          title: Id
        status:
          type: string
          title: Status
        request_text:
          type: string
          title: Request Text
        latest_step_action:
          anyOf:
          - type: string
          - type: 'null'
          title: Latest Step Action
        latest_step_reasoning:
          anyOf:
          - type: string
          - type: 'null'
          title: Latest Step Reasoning
        latest_step_number:
          anyOf:
          - type: integer
          - type: 'null'
          title: Latest Step Number
      type: object
      required:
      - id
      - status
      - request_text
      title: ScoutSummary
      description: 'Compact per-scout summary used by the Home Live cards to render an

        exploration coordinator''s ticker (one row per scout with its latest activity).'
    RunDetailResponse:
      properties:
        request_text:
          type: string
          title: Request Text
        id:
          type: string
          format: uuid4
          title: Id
        organization_id:
          type: string
          format: uuid4
          title: Organization Id
        triggered_by:
          anyOf:
          - type: string
            format: uuid4
          - type: 'null'
          title: Triggered By
        triggered_by_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Triggered By Name
        triggered_by_clerk_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Triggered By Clerk Id
        triggered_from:
          type: string
          title: Triggered From
        run_type:
          type: string
          title: Run Type
          default: task
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
        slack_thread_ts:
          anyOf:
          - type: string
          - type: 'null'
          title: Slack Thread Ts
        slack_channel_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Slack Channel Id
        status:
          type: string
          title: Status
        response_text:
          anyOf:
          - type: string
          - type: 'null'
          title: Response Text
        structured_output:
          anyOf:
          - additionalProperties: true
            type: object
          - items: {}
            type: array
          - type: 'null'
          title: Structured Output
        context_metadata:
          additionalProperties: true
          type: object
          title: Context Metadata
        started_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Started At
        completed_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Completed At
        created_at:
          type: string
          format: date-time
          title: Created At
        error_message:
          anyOf:
          - type: string
          - type: 'null'
          title: Error Message
        error_category:
          anyOf:
          - type: string
          - type: 'null'
          title: Error Category
        duration_seconds:
          anyOf:
          - type: integer
          - type: 'null'
          title: Duration Seconds
        cua_prompt_tokens:
          anyOf:
          - type: integer
          - type: 'null'
          title: Cua Prompt Tokens
        cua_completion_tokens:
          anyOf:
          - type: integer
          - type: 'null'
          title: Cua Completion Tokens
        cua_total_tokens:
          anyOf:
          - type: integer
          - type: 'null'
          title: Cua Total Tokens
        cua_prompt_cost:
          anyOf:
          - type: number
          - type: 'null'
          title: Cua Prompt Cost
        cua_completion_cost:
          anyOf:
          - type: number
          - type: 'null'
          title: Cua Completion Cost
        cua_total_cost:
          anyOf:
          - type: number
          - type: 'null'
          title: Cua Total Cost
        has_recording:
          type: boolean
          title: Has Recording
          default: false
        training_data_url:
          anyOf:
          - type: string
          - type: 'null'
          title: Training Data Url
        child_count:
          type: integer
          title: Child Count
          default: 0
        exploration_id:
          anyOf:
          - type: string
            format: uuid4
          - type: 'null'
          title: Exploration Id
        is_exploration:
          type: boolean
          title: Is Exploration
          default: false
        agent_id:
          anyOf:
          - type: string
            format: uuid4
          - type: 'null'
          title: Agent Id
        agent_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Agent Name
        agent_icon:
          anyOf:
          - type: string
          - type: 'null'
          title: Agent Icon
        tagged_agents:
          items:
            $ref: '#/components/schemas/UsedAgent'
          type: array
          title: Tagged Agents
          default: []
        customer_id:
          anyOf:
          - type: string
            format: uuid4
          - type: 'null'
          title: Customer Id
        customer_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Customer Name
        customer_icon:
          anyOf:
          - type: string
          - type: 'null'
          title: Customer Icon
        customer_gradient:
          anyOf:
          - type: string
          - type: 'null'
          title: Customer Gradient
        relevant_features:
          anyOf:
          - items:
              additionalProperties: true
              type: object
            type: array
          - type: 'null'
          title: Relevant Features
        relevant_company_knowledge:
          anyOf:
          - items:
              additionalProperties: true
              type: object
            type: array
          - type: 'null'
          title: Relevant Company Knowledge
        relevant_agent_insights:
          anyOf:
          - items:
              additionalProperties: true
              type: object
            type: array
          - type: 'null'
          title: Relevant Agent Insights
        created_workflow:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Created Workflow
        updated_workflow:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Updated Workflow
        auto_debrief_pending_count:
          anyOf:
          - type: integer
          - type: 'null'
          title: Auto Debrief Pending Count
        steps:
          items:
            $ref: '#/components/schemas/RunStepResponse'
          type: array
          title: Steps
          default: []
        current_step:
          anyOf:
          - $ref: '#/components/schemas/RunStepResponse'
          - type: 'null'
        last_steps:
          items:
            $ref: '#/components/schemas/RunStepResponse'
          type: array
          title: Last Steps
          default: []
        scout_summary:
          items:
            $ref: '#/components/schemas/ScoutSummary'
          type: array
          title: Scout Summary
          default: []
        child_runs:
          items:
            $ref: '#/components/schemas/RunResponse'
          type: array
          title: Child Runs
          default: []
        browser_telemetry_events:
          items:
            $ref: '#/components/schemas/BrowserTelemetryEventResponse'
          type: array
          title: Browser Telemetry Events
          default: []
      type: object
      required:
      - request_text
      - id
      - organization_id
      - triggered_by
      - triggered_from
      - slack_thread_ts
      - slack_channel_id
      - status
      - response_text
      - context_metadata
      - started_at
      - completed_at
      - created_at
      - error_message
      title: RunDetailResponse
      description: Full run details including steps
    ReportIssueResponse:
      properties:
        success:
          type: boolean
          title: Success
        issue_id:
          type: string
          title: Issue Id
        message:
          type: string
          title: Message
      type: object
      required:
      - success
      - issue_id
      - message
      title: ReportIssueResponse
      description: Response after reporting an issue
    BrowserTelemetryEventResponse:
      properties:
        id:
          type: string
          format: uuid4
          title: Id
        kernel_browser_id:
          type: string
          title: Kernel Browser Id
        sequence:
          type: integer
          title: Sequence
        occurred_at:
          type: string
          format: date-time
          title: Occurred At
        category:
          type: string
          title: Category
        event_type:
          type: string
          title: Event Type
  

# --- truncated at 32 KB (43 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/unisson/refs/heads/main/openapi/unisson-runs-api-openapi.yml