UlazAI documente pentru dezvoltatori
Imagine moștenită APIs
Compatibilitate cu punctele finale vechi
Rutele vechi de imagini rămân disponibile. Păstrați în funcțiune integrările existente, dar utilizați punctul final unificat pentru noile versiuni.
Noua cale recomandată:
/api/v1/generate/
Lista de puncte finale moștenite
| Metoda | Calea | Scop |
|---|---|---|
| POSTĂ | /api/v1/seedream45/generate/ |
Seedream 4.5 text-to-image |
| POSTĂ | /api/v1/seedream45/edit/ |
Seedream 4.5 image edit |
| GET | /api/v1/seedream45/status/{task_id}/ |
Seedream 4.5 task status |
| POSTĂ | /api/v1/z-image/generate/ |
Z-Image photorealistic generation |
| GET | /api/v1/z-image/status/{task_id}/ |
Z-Image task status |
| POSTĂ | /nano-banana/api/generate/ |
Nano Banana text-to-image |
| POSTĂ | /nano-banana/api/edit/ |
Nano Banana image edit |
| POSTĂ | /nano-banana/api/pro/generate/ |
Nano Banana Pro text-to-image |
| POSTĂ | /nano-banana/api/pro/edit/ |
Nano Banana Pro image edit |
| GET | /nano-banana/api/status/{task_id}/ |
Nano Banana and Nano Banana Pro status |
Ghid de migrare
| Familie de modele actuale | Ruta curentă | Alternativă unificată |
|---|---|---|
| Seedream 4.5 | /api/v1/seedream45/* |
POST /api/v1/generate/ cu model=seedream_5_lite |
| Nano Banana / Pro | /nano-banana/api/* |
POST /api/v1/generate/ cu model=nano_banana_2 |
| Z-Imagine | /api/v1/z-image/* |
POST /api/v1/generate/ cu model=gpt_image_15 sau model=grok_imagine |
Fragmente de referință
Legacy Seedream 4.5
curl -X POST https://ulazai.com/api/v1/seedream45/generate/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Architectural interior with warm evening light",
"aspect_ratio": "16:9",
"quality": "high"
}'
Înlocuire unificată
curl -X POST https://ulazai.com/api/v1/generate/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Architectural interior with warm evening light",
"model": "seedream_5_lite",
"size": "16:9",
"quality": "high"
}'