curl --location --request POST 'http://dev-cn.your-api-server.com/v1/images/generations' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-image-2",
"prompt": "制作一张极简产品主图,白底,高级质感,正方形构图",
"size": "1024x1024",
"quality": "high",
"n": 1,
"response_format": "b64_json"
}'{
"created": 1777408165,
"data": [
{
"b64_json": "iVBORw0KGgoAAAANSUhEUgAA..."
}
],
"usage": {
"prompt_tokens": 0,
"completion_tokens": 0,
"total_tokens": 0
}
}