新一代高质量一站式AI大模型API聚合平台,团队拥有3年+的API中转平台运营经验,高效,快速,稳定,承诺永久运营
Authorization: Bearer ********************{
"model": "grok-imagine-1.0-video",
"messages": [
{
"role": "user",
"content": [
{"type": "text", "text": "让画面中的云缓缓飘动,水面泛起涟漪"},
{"type": "image_url", "image_url": {"url": "https://example.com/landscape.jpg"}}
]
}
],
"stream": false,
"video_config": {
"aspect_ratio": "16:9",
"video_length": 6,
"resolution_name": "480p"
}
}curl --location --request POST 'https://api.xgapi.top/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "grok-imagine-1.0-video",
"messages": [
{
"role": "user",
"content": [
{"type": "text", "text": "让画面中的云缓缓飘动,水面泛起涟漪"},
{"type": "image_url", "image_url": {"url": "https://example.com/landscape.jpg"}}
]
}
],
"stream": false,
"video_config": {
"aspect_ratio": "16:9",
"video_length": 6,
"resolution_name": "480p"
}
}'{
"id": "chatcmpl-abc123",
"object": "chat.completion",
"created": 1709000000,
"model": "grok-imagine-1.0-video",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "http://localhost:8000/videos/users-xxx-generated-video.mp4"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 30,
"completion_tokens": 10,
"total_tokens": 40
}
}