切换主题
Grok 视频生成
使用 DragonAPI 密钥和本站接口。示例中的 your-media.example 是占位地址,需替换为你自己的可访问素材或回调地址。协议、可用性与价格以当前模型说明和控制台为准。
使用 Grok Video 模型生成高质量视频
- Grok Video 视频生成模型
- 通过 model 参数选择
grok-video-1.0模型 - 支持文本到视频、图生视频
- 异步任务管理,通过任务 ID 查询结果
重要变更 :为了更稳定的调用体验,我们不再支持在 reference_images 中直接传入 base64 图片数据。请先将素材保存到可公开访问的 HTTPS 地址,再调用本接口。
Authorizations
Authorization
string · 必填
所有接口均需要使用 Bearer Token 进行认证
获取 DragonAPI API Key:访问 DragonAPI 密钥管理页面 获取您的 API Key
使用时在请求头中添加:
text
Authorization: Bearer YOUR_DRAGONAPI_KEYBody
model
string · 必填 · 默认 grok-video-1.0
视频生成模型名称
支持的模型:
grok-video-1.0- Grok 视频生成模型
示例:"grok-video-1.0"
prompt
string · 必填
视频生成的文本描述
duration
integer · 可选 · 默认 8
视频时长(秒)
支持范围:1–15 秒
resolution
string · 可选 · 默认 720p
视频分辨率
支持的值:480p、720p
aspect_ratio
string · 可选
视频宽高比
支持的格式:
16:9(横屏)9:16(竖屏)3:2(横屏)2:3(竖屏)1:1(方形)
image
string · 可选
可选主图 URL。仅支持公网可访问的 http:// 或 https:// 地址。
reference_images
string[] · 可选
可选参考图 URL 数组,可用于人物、服装和场景一致性参考。
- 仅支持公网 URL,不支持 base64
image与reference_images合计最多 8 张- 请先将本地素材保存到可公开访问的 HTTPS 地址
Response
id
string · 可选
任务唯一标识符,用于查询任务状态
object
string · 可选
对象类型,固定为 generation.task
model
string · 可选
使用的模型名称
status
string · 可选
任务状态
queued- 排队等待处理in_progress- 处理中completed- 成功完成failed- 失败
created_at
integer · 可选
任务创建时间戳(Unix 时间戳)
progress
integer · 可选
任务进度,提交成功时通常为 0
metadata
object · 可选
任务元数据
curl --request POST \
--url https://newapi.dragon3api.com/v1/videos \
--header 'Authorization: Bearer YOUR_DRAGONAPI_KEY' \
--header 'Content-Type: application/json' \
--data '{
"model": "grok-video-1.0",
"prompt": "一只金毛犬在草地上奔跑,阳光明媚",
"duration": 10,
"resolution": "720p",
"aspect_ratio": "16:9"
}'curl --request POST \
--url https://newapi.dragon3api.com/v1/videos \
--header 'Authorization: Bearer YOUR_DRAGONAPI_KEY' \
--header 'Content-Type: application/json' \
--data '{
"model": "grok-video-1.0",
"prompt": "让这只狗动起来,在草地上奔跑",
"image": "https://your-media.example/dog.jpg",
"reference_images": [
"https://your-media.example/clothes.jpg",
"https://your-media.example/scene.jpg"
],
"duration": 10,
"resolution": "480p",
"aspect_ratio": "16:9"
}'import requests
response = requests.post(
"https://newapi.dragon3api.com/v1/videos",
headers={
"Authorization": "Bearer YOUR_DRAGONAPI_KEY",
"Content-Type": "application/json"
},
json={
"model": "grok-video-1.0",
"prompt": "一只金毛犬在草地上奔跑,阳光明媚",
"duration": 10,
"resolution": "720p",
"aspect_ratio": "16:9"
}
)
task = response.json()
print(f"任务 ID: {task['id']}")
print(f"状态: {task['status']}")const response = await fetch('https://newapi.dragon3api.com/v1/videos', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_DRAGONAPI_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'grok-video-1.0',
prompt: '一只金毛犬在草地上奔跑,阳光明媚',
duration: 10,
resolution: '720p',
aspect_ratio: '16:9'
})
});
const task = await response.json();
console.log(`任务 ID: ${task.id}`);
console.log(`状态: ${task.status}`);{
"id": "video_abc123def456",
"object": "generation.task",
"model": "grok-video-1.0",
"status": "queued",
"progress": 0,
"created_at": 1768380224,
"metadata": {}
}