跳转到主要内容
POST
/
generate
/
k
/
sora2-pro-text-to-video
Sora2 Pro 文本转视频
curl --request POST \
  --url https://api.sinancode.com/v1/generate/k/sora2-pro-text-to-video \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "aspect_ratio": "landscape",
  "n_frames": 10,
  "prompt": "a cinematic scene of a spaceship",
  "remove_watermark": false,
  "size": "standard"
}'
{
  "task_id": "01234567-89ab-cdef-0123-456789abcdef"
}
Sora 2 的专业版本,提供更高质量的文本转视频生成,支持 standard 和 high 两种质量等级。

Authorizations

Authorization
string
header
required

请使用您的 API Token 进行认证

Body

application/json

任务参数

prompt
string
required

提示词(必填)

Example:

"a cinematic scene of a spaceship"

aspect_ratio
enum<string>
default:landscape

宽高比(可选,默认 landscape)

可用选项:
portrait,
landscape
Example:

"landscape"

n_frames
enum<integer>
default:10

视频时长(可选,10或15秒,默认10)

可用选项:
10,
15
Example:

10

remove_watermark
boolean

移除水印(可选)

Example:

false

size
enum<string>
default:standard

视频质量(可选,standard/high,默认 standard)

可用选项:
standard,
high
Example:

"standard"

Response

OK

task_id
string
required

Task ID

Example:

"01234567-89ab-cdef-0123-456789abcdef"