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

# Sora 2 Pro Text to Video

> Sora 2 Pro モデルを使用してテキストから高品質な動画を生成します（非同期）

[OpenAI](https://openai.com) の Sora 2 Pro モデルを使用してテキストから高品質な動画を生成します。


## OpenAPI

````yaml /ja/openapi.yaml POST /generate/k/sora2-pro-text-to-video
openapi: 3.0.0
info:
  contact:
    email: support@sinancode.com
    name: API Support
    url: https://sinancode.com/support
  description: AIモデルタスクスケジューリングプラットフォーム API
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  termsOfService: https://sinancode.com/terms-of-service
  title: TikTomato API
  version: '1.0'
servers:
  - url: https://api.sinancode.com/v1
    description: 本番サーバー
security: []
paths:
  /generate/k/sora2-pro-text-to-video:
    post:
      tags:
        - public
      summary: Sora2 Pro テキストから動画
      description: Sora 2 Pro モデルを使用してテキストから高品質な動画を生成します（非同期）
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ka.CreateSora2ProTextToVideoTaskRequest'
        description: タスクパラメータ
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/dto.CreateTaskResponse'
        '400':
          description: パラメータエラー
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apierror.ErrorResponse'
        '401':
          description: 未認証
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apierror.ErrorResponse'
        '500':
          description: サーバーエラー
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apierror.ErrorResponse'
      security:
        - AccessToken: []
components:
  schemas:
    ka.CreateSora2ProTextToVideoTaskRequest:
      properties:
        aspect_ratio:
          default: landscape
          description: アスペクト比（オプション、デフォルト landscape）
          enum:
            - portrait
            - landscape
          example: landscape
          type: string
        n_frames:
          default: 10
          description: 動画の長さ（オプション、10または15秒、デフォルト10）
          enum:
            - 10
            - 15
          example: 10
          type: integer
        prompt:
          description: プロンプト（必須）
          example: a cinematic scene of a spaceship
          minLength: 1
          type: string
        remove_watermark:
          description: 透かしを削除（オプション）
          example: false
          type: boolean
        size:
          default: standard
          description: 動画の品質（オプション、standard/high、デフォルト standard）
          enum:
            - standard
            - high
          example: standard
          type: string
      required:
        - prompt
      type: object
    dto.CreateTaskResponse:
      properties:
        task_id:
          description: タスクID
          example: 01234567-89ab-cdef-0123-456789abcdef
          type: string
      required:
        - task_id
      type: object
    apierror.ErrorResponse:
      properties:
        error_code:
          description: '機械可読なエラーコード（例: TASK.INVALID_PARAMS）'
          type: string
        message:
          description: ユーザーフレンドリーなエラーメッセージ
          type: string
      type: object
  securitySchemes:
    AccessToken:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API Tokenを使用して認証を行ってください

````