{
"model": "gemini-2.5-flash-image",
"stream": false,
"messages": [
{
"role": "user",
"content": [
{
"text": "draw a picture sililarity",
"type": "text"
},
{
"image_url": {
"url": "https://filesystem.site/cdn/20250403/k0kVgLClcJyhH3Pybb5AInvsLptmQV.png"
},
"type": "image_url"
}
]
}
]
}
curl --location --request POST 'https://api.apicore.ai/v1/chat/completions' \
--header 'Authorization: Bearer sk-xxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gemini-2.5-flash-image",
"stream": false,
"messages": [
{
"role": "user",
"content": [
{
"text": "draw a picture sililarity",
"type": "text"
},
{
"image_url": {
"url": "https://filesystem.site/cdn/20250403/k0kVgLClcJyhH3Pybb5AInvsLptmQV.png"
},
"type": "image_url"
}
]
}
]
}'
{
"id": "chatcmpl-89DocsKCpJKFelswiv3OMPykfZym4",
"object": "chat.completion",
"created": 1756692469,
"model": "gemini-2.5-flash-image",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Here is an image similar to the one you provided. \n"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 97,
"completion_tokens": 47,
"total_tokens": 144,
"prompt_tokens_details": {
"text_tokens": 90
},
"completion_tokens_details": {
"content_tokens": 47
}
}
}