Authorization: Bearer ********************{
"model": "gemini_3.1_flash_image_preview",
"messages": [
{
"role": "user",
"content": [
{"type": "text", "text": "A breathtaking landscape at sunset"}
]
}
],
"extra_body": {
"google": {
"image_config": {
"aspect_ratio": "16:9",
"image_size": "2K"
}
}
}
}curl --location --request POST '/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gemini_3.1_flash_image_preview",
"messages": [
{
"role": "user",
"content": [
{"type": "text", "text": "A breathtaking landscape at sunset"}
]
}
],
"extra_body": {
"google": {
"image_config": {
"aspect_ratio": "16:9",
"image_size": "2K"
}
}
}
}'{}