外观
图像生成 接口
使用 AI 模型生成图像。
API 端点
POST https://ai.cccode.org/v1/images/generations请求体
json
{
"model": "dall-e-3",
"prompt": "A cute cat sitting in a garden",
"n": 1,
"size": "1024x1024"
}示例请求
bash
curl https://ai.cccode.org/v1/images/generations \
-H "Authorization: Bearer sk-你的密钥" \
-H "Content-Type: application/json" \
-d '{
"model": "dall-e-3",
"prompt": "A cute cat sitting in a garden",
"n": 1,
"size": "1024x1024"
}'响应格式
json
{
"created": 1589478378,
"data": [
{
"url": "https://..."
}
]
}