Nano Banana
Geração rápida de imagens com suporte a texto-para-imagem e imagem-para-imagem
Funcionalidades
- Geração de texto para imagem
- Transformação de imagem para imagem
- Múltiplas proporções de tela
- Geração rápida (~5s)
Preços
4 (~$0.04)Per image
Endpoint
POST
/api/v1/images/generateParâmetros
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| model | string | Obrigatório | Must be "nano-banana" |
| prompt | string | Obrigatório | Text description of the image to generate |
| negative_prompt | string | Opcional | What to avoid in the image |
| aspect_ratio | string | Opcional | "1:1", "16:9", "9:16", "4:3", "3:4" |
| input_image | string | Opcional | URL or base64 for image-to-image |
| num_images | number | Opcional | Must be 1 |
Exemplo de Solicitação
{
"model": "nano-banana",
"prompt": "A futuristic city at night with neon lights",
"aspect_ratio": "16:9"
}Exemplo de Resposta
{
"success": true,
"data": {
"task_id": "task_abc123",
"credits_used": 4,
"remaining_credits": 496,
"model": "nano-banana"
}
}Exemplos de Código
curl -X POST https://gateway.nanobananapro.site/api/v1/images/generate \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{
"model": "nano-banana",
"prompt": "A futuristic city at night with neon lights",
"aspect_ratio": "16:9"
}'