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

# List Approvals

> Returns pending and resolved human-in-the-loop approvals visible to the caller. Visibility is the union of approvals created during runs triggered by the caller's api_key, approvals where the caller's email appears in notified_emails, and approvals on workflows the caller can access via sharing.



## OpenAPI

````yaml openapi/superflow.yaml GET /approvals
openapi: 3.0.3
info:
  title: Lyzr SuperFlow API
  version: '1.0'
  description: >-
    SuperFlow orchestration API covering workflow CRUD, the execution lifecycle
    (run, pause, resume, terminate, rerun), scheduling, and human-in-the-loop
    approvals. Chat-completions and agent CRUD endpoints are documented
    separately and are not part of this surface.
servers:
  - url: https://inference.studio.lyzr.ai/api
security:
  - ApiKeyAuth: []
tags:
  - name: workflows
    description: Create, read, update, delete, and share workflow definitions.
  - name: workflow-execution
    description: Run workflows and control the execution lifecycle.
  - name: workflow-schedules
    description: Cron-driven recurring triggers for stored workflows.
  - name: approvals
    description: Human-in-the-loop approval requests raised by running workflows.
paths:
  /approvals:
    get:
      tags:
        - approvals
      summary: List approvals
      description: >-
        Returns pending and resolved human-in-the-loop approvals visible to the
        caller. Visibility is the union of approvals created during runs
        triggered by the caller's api_key, approvals where the caller's email
        appears in notified_emails, and approvals on workflows the caller can
        access via sharing.
      operationId: listApprovals
      parameters:
        - name: status
          in: query
          description: Filter by status (pending, approved, rejected)
          schema:
            type: string
        - name: execution_id
          in: query
          description: Filter by execution ID
          schema:
            type: string
        - name: workflow_id
          in: query
          description: Filter by workflow ID
          schema:
            type: string
        - name: limit
          in: query
          description: Page size (default 50, max 200)
          schema:
            type: integer
        - name: skip
          in: query
          description: Page offset (default 0)
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApprovalSummary'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ApprovalSummary:
      type: object
      properties:
        id:
          type: string
        execution_id:
          type: string
        workflow_name:
          type: string
        node_name:
          type: string
        awakeable_id:
          type: string
        status:
          type: string
          example: pending
        created_at:
          type: string
        resolved_at:
          type: string
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Tenant API key. Required on every endpoint.

````