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

# Get Super Node Dependents

> Paginated list of workflows that embed the given workflow as a super node.

Surfaces the same data that ``DELETE /super-node-interface`` previously capped at 100,
but in a dedicated endpoint with pagination. Used by the dashboard to power the
"See dependents" view and to gate unpublish confirmation.



## OpenAPI

````yaml https://api-prod.interactly.ai/api-docs/workflows/api.json get /workflows/v1/workflows/{workflow_id}/super-node-dependents
openapi: 3.1.0
info:
  title: Interactly API
  description: API for building interactly.ai services
  version: 1.1.0
  contact:
    name: Interactly
    url: https://interactly.ai
    email: developers@interactly.ai
servers:
  - url: https://api-prod.interactly.ai
    description: API Server
security: []
paths:
  /workflows/v1/workflows/{workflow_id}/super-node-dependents:
    get:
      tags:
        - Super Nodes
      summary: Get Super Node Dependents
      description: >-
        Paginated list of workflows that embed the given workflow as a super
        node.


        Surfaces the same data that ``DELETE /super-node-interface`` previously
        capped at 100,

        but in a dedicated endpoint with pagination. Used by the dashboard to
        power the

        "See dependents" view and to gate unpublish confirmation.
      operationId: >-
        workflow_service_get_super_node_dependents_v1_workflows__workflow_id__super_node_dependents_get
      parameters:
        - name: workflow_id
          in: path
          required: true
          schema:
            $ref: '#/components/schemas/PydanticObjectId'
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: size
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Size
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DependentsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearer: []
components:
  schemas:
    PydanticObjectId:
      type: string
      maxLength: 24
      minLength: 24
      pattern: ^[0-9a-f]{24}$
      example: 5eb7cf5a86d9755df3a6c593
    DependentsResponse:
      properties:
        workflows:
          items:
            $ref: '#/components/schemas/DependentWorkflow'
          type: array
          title: Workflows
        total:
          type: integer
          title: Total
          description: Total number of workflows referencing this super node
        page:
          type: integer
          title: Page
        size:
          type: integer
          title: Size
      type: object
      required:
        - workflows
        - total
        - page
        - size
      title: DependentsResponse
      description: Paginated list of workflows that embed a given super node.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DependentWorkflow:
      properties:
        workflow_id:
          type: string
          title: Workflow Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
      type: object
      required:
        - workflow_id
      title: DependentWorkflow
      description: A workflow that embeds a given super node.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: Bearer
      type: http
      description: >-
        Retrieve your API Key from [Dashboard API Keys
        Section](https://dashboard.interactly.ai/api-keys).

````