curl --location --request POST 'https://router.shengsuanyun.com/api/v1/images/generations' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "google/gemini-2.5-flash-image-preview",
"prompt": "壮观的山脉景色,云雾缭绕,添加微妙的云层"
}'
{
"candidates": [
{
"content": {
"role": "model",
"parts": [
{
"text": "string",
"inlineData": {
"mimeType": "image/png",
"data": "string"
}
}
]
},
"finishReason": "STOP",
"safetyRatings": [
{
"category": "string",
"probability": "string",
"probabilityScore": 0,
"severity": "string",
"severityScore": 0
}
]
}
],
"usageMetadata": {
"promptTokenCount": 0,
"candidatesTokenCount": 0,
"totalTokenCount": 0,
"thoughtsTokenCount": 0
}
}