🔌 API 控制台

面向开发者 · 集成 Cat AIGC 到你的产品

今日调用
0
本月消耗
¥0.00
成功率
100%
余额
¥0.00

🚀 快速开始

# 创建视频生成任务
curl -X POST https://api.cat-aigc.com/v1/videos/generate \
  -H "Authorization: Bearer sk-aigc-xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "kling-v2.1",
    "resolution": "1080p",
    "duration": 5,
    "aspect_ratio": "16:9",
    "prompt": "咖啡特写,阳光洒在冰美式杯壁上"
  }'

# 返回
{
  "task_id": "task_7a3f...",
  "status": "queued"
}