> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-feat-openapi-i18n.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# AI를 사용한 피부 개선 (Creative)

> Creative 모드로 AI를 사용하여 이미지의 피부를 개선합니다. 이 모드는 더 예술적이고 세련된 개선을 제공합니다.



## OpenAPI

````yaml /openapi/registry.ko.yaml post /proxy/freepik/v1/ai/skin-enhancer/creative
openapi: 3.0.2
info:
  title: Comfy API
  version: '1.0'
servers:
  - url: https://api.comfy.org
security: []
paths:
  /proxy/freepik/v1/ai/skin-enhancer/creative:
    post:
      tags:
        - Freepik
        - Proxy
      summary: AI를 사용한 피부 개선 (Creative)
      description: Creative 모드로 AI를 사용하여 이미지의 피부를 개선합니다. 이 모드는 더 예술적이고 세련된 개선을 제공합니다.
      operationId: FreepikSkinEnhancerCreative
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FreepikSkinEnhancerCreativeRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FreepikTaskResponse'
          description: OK - 피부 개선 프로세스가 시작되었습니다.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FreepikErrorResponse'
          description: 잘못된 요청
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FreepikErrorResponse'
          description: 내부 서버 오류
      security:
        - BearerAuth: []
components:
  schemas:
    FreepikSkinEnhancerCreativeRequest:
      properties:
        image:
          description: 입력 이미지. Base64 인코딩 또는 HTTPS URL(공개적으로 접근 가능해야 함)을 지원합니다.
          example: https://example.com/portrait.jpg
          type: string
        sharpen:
          default: 0
          description: 샤프닝 강도
          maximum: 100
          minimum: 0
          type: integer
        smart_grain:
          default: 2
          description: 스마트 그레인 강도
          maximum: 100
          minimum: 0
          type: integer
        webhook_url:
          description: 비동기 알림을 위한 선택적 콜백 URL입니다.
          example: https://www.example.com/webhook
          format: uri
          type: string
      required:
        - image
      type: object
    FreepikTaskResponse:
      properties:
        data:
          $ref: '#/components/schemas/FreepikTaskData'
      required:
        - data
      type: object
    FreepikErrorResponse:
      properties:
        error:
          type: string
        message:
          type: string
      type: object
    FreepikTaskData:
      properties:
        generated:
          description: 생성된 이미지의 URL입니다.
          items:
            format: uri
            type: string
          type: array
        status:
          enum:
            - CREATED
            - IN_PROGRESS
            - COMPLETED
            - FAILED
          type: string
        task_id:
          example: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
          format: uuid
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````