> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-chore-sync-comfy-api-v2-spec-462120c.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get proxyvidutasks creations



## OpenAPI

````yaml https://api.comfy.org/openapi get /proxy/vidu/tasks/{id}/creations
openapi: 3.0.2
info:
  title: Comfy API
  version: '1.0'
servers:
  - url: https://api.comfy.org
security: []
tags:
  - description: >-
      Comfy Router's canonical, model-ID-addressed routes. Router endpoints
      carry this tag and never the `API Nodes` tag: `API Nodes` drives ComfyUI's
      Partner-Node Pydantic codegen off the provider-shaped `/proxy/*` surface,
      and reusing it would couple the Router contract to that generator. New
      Router routes belong here.
    name: Comfy Router
paths:
  /proxy/vidu/tasks/{id}/creations:
    get:
      tags:
        - API Nodes
        - Released
      operationId: ViduGetCreations
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ViduGetCreationsReply'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error 4xx/5xx
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error 4xx/5xx
      security:
        - BearerAuth: []
        - ApiKeyAuth: []
components:
  schemas:
    ViduGetCreationsReply:
      properties:
        creations:
          items:
            $ref: '#/components/schemas/ViduCreation'
          type: array
        err_code:
          type: string
        id:
          type: string
        state:
          $ref: '#/components/schemas/ViduState'
      type: object
    Error:
      properties:
        details:
          description: >-
            Optional detailed information about the error or hints for resolving
            it.
          items:
            type: string
          type: array
        message:
          description: A clear and concise description of the error.
          type: string
      type: object
    ViduCreation:
      properties:
        cover_url:
          type: string
        id:
          type: string
        moderation_url:
          items:
            type: string
          type: array
        url:
          type: string
        watermarked_url:
          type: string
      type: object
    ViduState:
      enum:
        - created
        - processing
        - queueing
        - success
        - failed
      type: string
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http
    ApiKeyAuth:
      description: |
        API key authentication. Keys are prefixed with 'comfyui-' and can be
        generated from user account settings. The comfyFirebase auth middleware
        checks this header before falling back to the Authorization bearer
        token; it is the single inbound reader of X-API-Key, and it backs both
        the /customers and the /proxy authset entries.
      in: header
      name: X-API-Key
      type: apiKey

````