
🇺🇸 English

🇺🇸 English
- Chat Models
- Chat
- OpenAI-Realtime
- Completions
- Audio
- Image generation
- Embeddings
- Models
- Help
- Anthropic
- Suno
- Udio
- Midjourney API
- Flux
- Recraft
- Ideogram
- Luma
- Runway
- Kling-API
- Replicate
- MiniMax
text to video
POST
/runway/pro/generate
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
string
optional
Header Params
string
optional
Authorization
string
optional
Default:
{{YOUR_API_KEY}}
Body Params application/json
callback_url
string
回调地址
ratio
enum<string>
画面尺寸
Allowed values:
16:99:161:14:321:9
Default:
16:9
prompt
string
描述词
style
enum<string>
风格
Allowed value:
cinematic
Default:
cinematic
model
enum<string>
模型
Allowed values:
gen2gen3
Default:
gen3
options
object
参数
motion_vector
object
镜头控制
seconds
enum<integer>
视频时长
Allowed values:
510
Default:
10
Example
{
"callback_url": "http://baidu.com",
"ratio": "16:9",
"prompt": "cat",
"style": "cinematic",
"model": "gen3",
"options": {
"seconds": 10,
"motion_vector": {
"x": 0,
"y": 0.3999999999999999,
"z": 0,
"r": -6,
"bg_x_pan": 0,
"bg_y_pan": 0
}
}
}
Responses
🟢200成功
application/json
Body
code
integer
required
msg
string
required
data
object
required
task_id
string
任务ID
exec_time
number
required
Example
{
"code": 200,
"msg": "成功",
"data": {
"task_id": "0ab3bfe2-be23-4635-8c35-890fb2c1732d"
},
"exec_time": 0.67573
}
Modified at 2025-02-05 11:34:01