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

# 上传文件（参考图偏/参考视频/参考音频）只保存3小时



## OpenAPI

````yaml /apidoc/toopen-new.json post /upload
openapi: 3.1.0
info:
  title: AI智能助手
  description: ''
  version: 1.0.0
servers:
  - url: https://open251124.ai.jko.cc
security:
  - BearerAuth: []
tags:
  - name: 视频生成
    description: AI 视频生成及结果查询接口
  - name: 视频生成-Seedance2.0体验版
  - name: 视频生成-Seedance2.0渠道2
  - name: 视频生成-seedance 2.0-限时折扣（支持人脸）
  - name: 视频生成-谷歌omni
  - name: 视频生成-获取生成结果
  - name: 视频生成-seedance
  - name: 视频生成-seedance2.0（支持人脸）
paths:
  /upload:
    post:
      tags:
        - 临时储存
      summary: 上传文件（参考图偏/参考视频/参考音频）只保存3小时
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  description: 文件
                  format: binary
              required:
                - file
      responses:
        '200':
          description: 成功
          content:
            application/json:
              schema:
                type: object
                properties: {}
              example:
                status: 100
                message: 操作成功
                data:
                  full_url: open251124.ai.jko.cc/1785314758_65f4ec.mp4
        '404':
          description: 失败
          content:
            application/json:
              schema:
                type: object
                properties: {}
              example: ''
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        在 Authorization 请求头中传入带 Bearer 头的 API 密钥，例如：Bearer xxxxxx 
        [如何获取 API 密钥？](/dev/open/get-bearer-token)

````