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

# Get a workflow run

> Get a specific workflow run with all its steps and their current status.



## OpenAPI

````yaml /reference/openapi.yaml get /v1/user-workflow-runs/{UserWorkflowRunID}
openapi: 3.1.0
info:
  title: Tamtam Public API
  version: 2.0.0
servers:
  - url: https://api.tamtam.ai/api
security: []
paths:
  /v1/user-workflow-runs/{UserWorkflowRunID}:
    get:
      tags:
        - Workflow Runs
      summary: Get a workflow run
      description: Get a specific workflow run with all its steps and their current status.
      operationId: get-user-workflow-run
      parameters:
        - description: Workflow run UUID
          in: path
          name: UserWorkflowRunID
          required: true
          schema:
            description: Workflow run UUID
            examples:
              - b3c6f5e2-1234-4abc-9def-0123456789ab
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserWorkflowRunWithStepsDTO'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Error
      security:
        - apikeyAuth: []
        - bearerAuth: []
components:
  schemas:
    UserWorkflowRunWithStepsDTO:
      additionalProperties: false
      properties:
        Run:
          $ref: '#/components/schemas/UserWorkflowRunDTO'
          description: Workflow run details
        Status:
          description: Current status of the workflow run
          examples:
            - RUNNING
          type: string
        Steps:
          description: List of steps in the workflow
          items:
            $ref: '#/components/schemas/UserWorkflowRunStepDTO'
          type:
            - array
            - 'null'
      required:
        - Status
        - Run
        - Steps
      type: object
    ErrorModel:
      additionalProperties: false
      properties:
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
      type: object
    UserWorkflowRunDTO:
      additionalProperties: false
      properties:
        AccountID:
          description: Account UUID
          examples:
            - d5e8f7a4-6789-4cde-bf01-234567890abc
          type: string
        CreatedAt:
          description: Creation timestamp
          examples:
            - '2026-04-07T09:00:00Z'
          format: date-time
          type: string
        ID:
          description: Workflow run UUID
          examples:
            - b3c6f5e2-1234-4abc-9def-0123456789ab
          type: string
        UpdatedAt:
          description: Last update timestamp
          examples:
            - '2026-04-07T09:05:00Z'
          format: date-time
          type: string
        UserEmail:
          description: User email
          examples:
            - elliot.alderson@tamtam.ai
          type: string
      required:
        - ID
        - AccountID
        - UserEmail
        - CreatedAt
        - UpdatedAt
      type: object
    UserWorkflowRunStepDTO:
      additionalProperties: false
      properties:
        CreatedAt:
          description: Creation timestamp
          examples:
            - '2026-04-07T09:00:00Z'
          format: date-time
          type: string
        ID:
          description: Step UUID
          examples:
            - c4d7e6f3-5678-4bcd-aef0-1234567890ab
          type: string
        Input:
          description: Step input data
        Output:
          description: Step output data
        ParentStepID:
          description: Parent step UUID
          type: string
        Status:
          description: Current status of the step
          examples:
            - RUNNING
          type: string
        StepType:
          description: Type of the step
          examples:
            - search_people
          type: string
        UpdatedAt:
          description: Last update timestamp
          examples:
            - '2026-04-07T09:05:00Z'
          format: date-time
          type: string
        UserWorkflowRunID:
          description: Parent workflow run UUID
          examples:
            - b3c6f5e2-1234-4abc-9def-0123456789ab
          type: string
      required:
        - ID
        - UserWorkflowRunID
        - StepType
        - Status
        - CreatedAt
        - UpdatedAt
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
  securitySchemes:
    apikeyAuth:
      description: Account API key passed in the Authorization header
      in: header
      name: Authorization
      type: apiKey
    bearerAuth:
      description: Bearer JWT obtained via the OAuth 2.1 authorization flow
      scheme: bearer
      type: http

````