نانو بانا برو
توليد صور عالية الجودة بخيارات دقة تصل حتى 4K
المزايا
- توليد الصور من النصوص
- تحويل الصورة إلى صورة
- دقة متعددة (1K/2K/4K)
- إخراج بجودة أعلى
التسعير
| Resolution | Credits |
|---|---|
| 1K | 6 (~$0.07) |
| 2K | 9 (~$0.10) |
| 4K | 15 (~$0.17) |
نقطة النهاية
POST
/api/v1/images/generateالمُعاملات
| معامل | النوع | مطلوب | وصف |
|---|---|---|---|
| model | string | مطلوب | Must be "nano-banana-pro" |
| prompt | string | مطلوب | Text description of the image to generate |
| resolution | string | اختياري | "1K", "2K", or "4K" |
| negative_prompt | string | اختياري | What to avoid in the image |
| aspect_ratio | string | اختياري | "1:1", "16:9", "9:16", "4:3", "3:4" |
| input_image | string | اختياري | URL or base64 for image-to-image |
| num_images | number | اختياري | Must be 1 |
مثال للطلب
{
"model": "nano-banana-pro",
"resolution": "2K",
"prompt": "A majestic dragon flying over a medieval castle",
"aspect_ratio": "16:9"
}مثال على الرد
{
"success": true,
"data": {
"task_id": "task_xyz789",
"credits_used": 9,
"remaining_credits": 491,
"model": "nano-banana-pro"
}
}أمثلة التعليمات البرمجية
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-pro",
"resolution": "2K",
"prompt": "A majestic dragon flying over a medieval castle",
"aspect_ratio": "16:9"
}'