Authorization: Bearer ********************{
"model": "gemini_3.1_flash_image_preview",
"messages": [
{
"role": "user",
"content": [
{"type": "image_url", "image_url": {"url": "https://example.com/ref.jpg"}},
{"type": "text", "text": "Transform into watercolor painting style"}
]
}
],
"extra_body": {
"google": {
"image_config": {
"aspect_ratio": "16:9",
"image_size": "1K"
}
}
}
}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": "image_url", "image_url": {"url": "https://example.com/ref.jpg"}},
{"type": "text", "text": "Transform into watercolor painting style"}
]
}
],
"extra_body": {
"google": {
"image_config": {
"aspect_ratio": "16:9",
"image_size": "1K"
}
}
}
}'{}