{
  "openapi": "3.1.0",
  "info": {
    "title": "gemini-omni-flash-video-edit 인터페이스",
    "description": "Gemini Omni Flash 모델을 사용한 영상 편집으로, 입력 영상 하나와 텍스트 프롬프트를 기반으로 편집된 영상을 생성합니다",
    "license": {
      "name": "MIT"
    },
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://api.evolink.ai",
      "description": "프로덕션 환경"
    }
  ],
  "security": [
    {
      "bearerAuth": []
    }
  ],
  "paths": {
    "/v1/videos/generations": {
      "post": {
        "summary": "gemini-omni-flash-video-edit 인터페이스",
        "description": "- Gemini Omni Flash (gemini-omni-flash-video-edit) 모델은 영상 편집 모드를 지원하며, 입력 영상 하나와 텍스트 프롬프트를 기반으로 편집된 영상을 생성합니다\n- **영상 입력:** `video_urls`로 전달하며, 영상 1개만 지원하고 입력 영상의 길이는 3-10초여야 합니다\n- **편집 지시:** `prompt`로 원하는 편집 효과를 설명합니다(예: 조명 조정, 스타일 교체 등)\n- **네이티브 오디오:** 모델이 화면에 맞는 동기화 오디오를 자동으로 생성하며, 별도의 매개변수가 필요하지 않습니다\n- **매개변수 제약:** 영상 편집 모드에서는 `duration`과 `aspect_ratio`를 지원하지 않으며, 출력은 입력 영상을 따릅니다\n- **네거티브 설명:** `prompt`에 직접 작성하며(예: `No dialogue`), 본 모델은 별도의 네거티브 프롬프트 매개변수를 제공하지 않습니다\n- 비동기 처리 모드이며, 반환된 작업 ID를 사용하여 [조회](/ko/api-manual/task-management/get-task-detail)하세요\n- 생성된 영상 링크는 24시간 동안 유효하므로 즉시 저장하세요",
        "operationId": "createGeminiOmniFlashVideoEditGeneration",
        "tags": [
          "비디오 생성"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GeminiOmniFlashVideoEditRequest"
              },
              "examples": {
                "video_edit": {
                  "summary": "영상 편집",
                  "value": {
                    "model": "gemini-omni-flash-video-edit",
                    "prompt": "화면의 조명을 더 따뜻하게 만들고 나머지는 그대로 유지한다",
                    "video_urls": [
                      "https://example.com/source.mp4"
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "영상 작업 생성 성공",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/VideoGenerationResponse"
                }
              }
            }
          },
          "400": {
            "description": "요청 매개변수 오류",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "example": {
                  "error": {
                    "code": "invalid_request",
                    "message": "Invalid request parameters",
                    "type": "invalid_request_error"
                  }
                }
              }
            }
          },
          "401": {
            "description": "인증 실패, Token이 유효하지 않거나 만료됨",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "example": {
                  "error": {
                    "code": "unauthorized",
                    "message": "Invalid or expired token",
                    "type": "authentication_error"
                  }
                }
              }
            }
          },
          "402": {
            "description": "할당량 부족, 충전 필요",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "example": {
                  "error": {
                    "code": "insufficient_quota",
                    "message": "Insufficient quota. Please top up your account.",
                    "type": "insufficient_quota"
                  }
                }
              }
            }
          },
          "403": {
            "description": "접근 권한 없음",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "example": {
                  "error": {
                    "code": "model_access_denied",
                    "message": "Token does not have access to model: gemini-omni-flash-video-edit",
                    "type": "invalid_request_error"
                  }
                }
              }
            }
          },
          "429": {
            "description": "요청 빈도 초과",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "example": {
                  "error": {
                    "code": "rate_limit_exceeded",
                    "message": "Too many requests, please try again later",
                    "type": "rate_limit_error"
                  }
                }
              }
            }
          },
          "500": {
            "description": "서버 내부 오류",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "example": {
                  "error": {
                    "code": "internal_error",
                    "message": "Internal server error",
                    "type": "api_error"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "GeminiOmniFlashVideoEditRequest": {
        "required": [
          "model",
          "prompt"
        ],
        "type": "object",
        "properties": {
          "model": {
            "type": "string",
            "description": "모델 이름, `gemini-omni-flash-video-edit`로 고정",
            "enum": [
              "gemini-omni-flash-video-edit"
            ],
            "example": "gemini-omni-flash-video-edit"
          },
          "prompt": {
            "type": "string",
            "description": "영상 편집을 위한 텍스트 프롬프트로, 원하는 편집 효과를 설명하며 한국어와 영어를 지원합니다\n\n**사용 권장 사항:**\n- 변경할 요소와 그대로 유지할 부분을 설명합니다(예: 「조명을 더 따뜻하게 하고 나머지는 그대로 유지」)\n- 네거티브 요구 사항은 프롬프트에 직접 작성하며(예: `No dialogue`, `텍스트가 나타나지 않도록`), 본 모델은 별도의 네거티브 프롬프트 매개변수를 제공하지 않습니다",
            "example": "화면의 조명을 더 따뜻하게 만들고 나머지는 그대로 유지한다"
          },
          "video_urls": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uri"
            },
            "minItems": 1,
            "maxItems": 1,
            "description": "편집할 영상 배열, 1개만 지원\n\n**입력 요구 사항:**\n- 현재 HTTP/HTTPS 영상 URL만 지원\n- 형식: mp4\n- 길이: `3`-`10`초",
            "example": [
              "https://example.com/source.mp4"
            ]
          },
          "callback_url": {
            "type": "string",
            "description": "작업 완료 후 HTTPS 콜백 주소\n\n**콜백 타이밍:**\n- 작업이 완료(completed), 실패(failed) 또는 취소(cancelled)될 때 트리거됨\n- 과금 확인 완료 후 전송\n\n**보안 제한:**\n- HTTPS 프로토콜만 지원\n- 내부 IP 주소로의 콜백 금지 (127.0.0.1, 10.x.x.x, 172.16-31.x.x, 192.168.x.x 등)\n- URL 길이는 `2048`자를 초과할 수 없음\n\n**콜백 메커니즘:**\n- 타임아웃: `10`초\n- 실패 시 최대 `3`회 재시도 (실패 후 각각 `1`초/`2`초/`4`초 후 재시도)\n- 콜백 응답 본문 형식은 작업 조회 API 응답 형식과 동일\n- 콜백 주소가 2xx 상태 코드를 반환하면 성공으로 간주, 다른 상태 코드는 재시도를 트리거",
            "format": "uri",
            "example": "https://your-domain.com/webhooks/video-task-completed"
          }
        }
      },
      "VideoGenerationResponse": {
        "type": "object",
        "properties": {
          "created": {
            "type": "integer",
            "description": "작업 생성 타임스탬프",
            "example": 1757169743
          },
          "id": {
            "type": "string",
            "description": "작업 ID",
            "example": "task-unified-1757169743-7cvnl5zw"
          },
          "model": {
            "type": "string",
            "description": "실제 사용된 모델 이름",
            "example": "gemini-omni-flash-video-edit"
          },
          "object": {
            "type": "string",
            "enum": [
              "video.generation.task"
            ],
            "description": "특정 작업 유형"
          },
          "progress": {
            "type": "integer",
            "description": "작업 진행률 (0-100)",
            "minimum": 0,
            "maximum": 100,
            "example": 0
          },
          "status": {
            "type": "string",
            "description": "작업 상태",
            "enum": [
              "pending",
              "processing",
              "completed",
              "failed"
            ],
            "example": "pending"
          },
          "task_info": {
            "$ref": "#/components/schemas/VideoTaskInfo",
            "description": "비디오 작업 상세 정보"
          },
          "type": {
            "type": "string",
            "enum": [
              "text",
              "image",
              "audio",
              "video"
            ],
            "description": "작업 출력 유형",
            "example": "video"
          },
          "usage": {
            "$ref": "#/components/schemas/Usage",
            "description": "사용량 및 과금 정보"
          }
        }
      },
      "VideoTaskInfo": {
        "type": "object",
        "properties": {
          "can_cancel": {
            "type": "boolean",
            "description": "작업 취소 가능 여부",
            "example": false
          },
          "estimated_time": {
            "type": "integer",
            "description": "예상 완료 시간 (초)",
            "minimum": 0,
            "example": 60
          }
        }
      },
      "Usage": {
        "type": "object",
        "description": "사용량 및 과금 정보",
        "properties": {
          "billing_rule": {
            "type": "string",
            "description": "과금 규칙",
            "enum": [
              "per_call",
              "per_token",
              "per_second"
            ],
            "example": "per_token"
          },
          "credits_reserved": {
            "type": "number",
            "description": "예상 소비 크레딧",
            "minimum": 0,
            "example": 102.34
          },
          "user_group": {
            "type": "string",
            "description": "사용자 그룹 카테고리",
            "enum": [
              "default",
              "vip"
            ],
            "example": "default"
          }
        }
      },
      "ErrorResponse": {
        "type": "object",
        "properties": {
          "error": {
            "type": "object",
            "properties": {
              "code": {
                "type": "string",
                "description": "오류 코드 식별자"
              },
              "message": {
                "type": "string",
                "description": "오류 설명"
              },
              "type": {
                "type": "string",
                "description": "오류 유형"
              }
            }
          }
        }
      }
    },
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "description": "##모든 API는 Bearer Token 인증이 필요합니다##\n\n**API Key 받기:**\n\n[API Key 관리 페이지](https://evolink.ai/dashboard/keys)를 방문하여 API Key를 받으세요\n\n**요청 헤더에 추가:**\n```\nAuthorization: Bearer YOUR_API_KEY\n```"
      }
    }
  }
}