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

# List Workflow Runs

> List recent workflow runs for the organization, sorted by most recent first. Optionally filter by `status` (`running`, `completed`, `cancelled`, or `active` for queued+running) and `workflow_id`.



## OpenAPI

````yaml https://api.sixtyfour.ai/openapi.json get /workflows/runs
openapi: 3.1.0
info:
  title: Sixtyfour API
  description: >-
    Intelligence API for People and Entities. Deploy AI agents that investigate,
    resolve identities, map relationships, and surface risk signals
  contact:
    name: Sixtyfour
    url: https://sixtyfour.ai/
    email: support@sixtyfour.ai
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.sixtyfour.ai
    description: Production
security: []
tags:
  - name: Enrichment
    description: Find and enrich emails, phones, and LinkedIn for people and companies.
  - name: org-chart
    description: Discover people inside a company and build org charts.
  - name: Search
    description: Run deep and filter searches over Sixtyfour's data.
  - name: Workflow
    description: Create, run, and manage enrichment workflows.
  - name: Workflow Schedules
    description: Create and manage recurring schedules for workflows.
  - name: Account
    description: Manage and inspect your account and credit balance.
  - name: Intelligence
    description: Verify identity attributes such as age using high-tier OSINT research.
paths:
  /workflows/runs:
    get:
      tags:
        - Workflow
      summary: List Workflow Runs
      description: >-
        List recent workflow runs for the organization, sorted by most recent
        first. Optionally filter by `status` (`running`, `completed`,
        `cancelled`, or `active` for queued+running) and `workflow_id`.
      operationId: list_workflow_runs_workflows_runs_get
      parameters:
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by status or use 'active' for queued+running
            title: Status
          description: Filter by status or use 'active' for queued+running
        - name: workflow_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by specific workflow ID
            title: Workflow Id
          description: Filter by specific workflow ID
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 100
            title: Limit
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WorkflowRunResponse'
                title: Response List Workflow Runs Workflows Runs Get
        '400':
          description: Request was rejected by the route's validation rules.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: Invalid request body
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: Invalid API key
        '403':
          description: Caller does not have access to this workflow.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: Access denied
        '404':
          description: Workflow, run, or job not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: Workflow not found
        '409':
          description: Workflow with the supplied ID already exists.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: >-
                  Workflow with ID 0123abcd-1234-5678-9abc-def012345678 already
                  exists. Use update endpoint to modify existing workflows.
        '422':
          description: Request body failed validation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Unexpected server error. Retry with backoff.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: Internal server error
components:
  schemas:
    WorkflowRunResponse:
      properties:
        job_id:
          type: string
          title: Job Id
          description: Job (run) identifier.
        workflow_id:
          type: string
          title: Workflow Id
          description: Workflow identifier.
        workflow_name:
          type: string
          title: Workflow Name
          description: Workflow name at the time of the run.
          default: Untitled Workflow
        status:
          type: string
          title: Status
          description: Current status (e.g. queued, running, completed, failed).
        step:
          anyOf:
            - type: string
            - type: 'null'
          title: Step
          description: Current authoring step from the workflow.
        user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: User Id
          description: User who created the workflow.
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
          description: Timestamp when the record was created.
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
          description: Timestamp when the record was last updated.
        queued_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Queued At
          description: Timestamp when the run was enqueued.
        started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Started At
          description: Timestamp when execution started.
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
          description: Timestamp when execution finished.
        duration_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Ms
          description: Total run duration in milliseconds.
        status_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Status Reason
          description: Short reason explaining the current status.
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
          description: Error message if the operation failed.
        metrics:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Metrics
          description: Aggregate run metrics (rows in/out, costs, etc.).
        blocks:
          anyOf:
            - {}
            - type: 'null'
          title: Blocks
          description: Per-block detail; usually null in list responses.
        blocks_count:
          type: integer
          title: Blocks Count
          description: Number of blocks in the workflow at run time.
          default: 0
      type: object
      required:
        - job_id
        - workflow_id
        - status
      title: WorkflowRunResponse
      description: Response model for workflow run list items.
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
      example:
        detail:
          - loc:
              - body
              - target_company
              - domain
            msg: Field required
            type: missing
            input: null
            ctx: {}
    ValidationError:
      title: ValidationError
      type: object
      required:
        - loc
        - msg
        - type
      properties:
        loc:
          type: array
          items:
            oneOf:
              - type: string
              - type: integer
          description: Path to the field that failed validation.
          example:
            - body
            - target_company
            - domain
        msg:
          type: string
          description: Human-readable error message.
          example: Field required
        type:
          type: string
          description: Error code (e.g. 'missing', 'value_error').
          example: missing
        input:
          description: The offending input value (any type, may be null).
          nullable: true
          example: null
        ctx:
          type: object
          description: Optional error context.
          additionalProperties: true
          example: {}

````