🚨 Urgent: Zeabur AI Hub Image Generation API is completely down - All models and endpoints failing
Problem Description
The image generation feature of Zeabur AI Hub is not working. I have tried all models and endpoints listed in the official documentation, but all of them are failing.
Environment Information
- Project Type: Node.js + TypeScript full-stack application
- Deployment: Zeabur
- API Endpoints:
- Primary:
https://hnd1.aihub.zeabur.ai/v1/images/generations(Japan) - Fallback:
https://sfo1.aihub.zeabur.ai/v1/images/generations(USA) - API Key: Correctly configured in the
AIHUB_API_KEYenvironment variable.
Models Tested
According to the official documentation, I have tried all supported image generation models, and all failed:
❌ gemini-2.5-flash-image (Marked as default/faster in docs)
❌ gemini-3-pro-image-preview (Marked as higher quality in docs)
❌ gemini-3.1-flash-image-preview (Listed on the official site)
Testing Method
My application calls the image generation API as follows:
Request Format:
const body = JSON.({
: ,
: ,
: ,
: ,
: ,
});
response = (
,
{
: ,
: {
: ,
: ,
},
body,
}
);
Error Logs:
[ImageGen] gemini-3-pro-image-preview failed on hnd1.aihub.zeabur.ai: Model gemini-3-pro-image-preview is currently unavailable on this node (404 Not Found).
[ImageGen] gemini-3-pro-image-preview failed on sfo1.aihub.zeabur.ai: Model gemini-3-pro-image-preview is currently unavailable on this node (404 Not Found).
[ImageGen] gemini-2.5-flash-image failed on hnd1.aihub.zeabur.ai: Model gemini-2.5-flash-image is currently unavailable on this node (404 Not Found).
[ImageGen] gemini-2.5-flash-image failed on sfo1.aihub.zeabur.ai: Model gemini-2.5-flash-image is currently unavailable on this node (404 Not Found).
[ImageGen] gemini-3.1-flash-image-preview failed on hnd1.aihub.zeabur.ai: Model gemini-3.1-flash-image-preview is currently unavailable on this node (404 Not Found).
[ImageGen] gemini-3.1-flash-image-preview failed on sfo1.aihub.zeabur.ai: Model gemini-3.1-flash-image-preview is currently unavailable on this node (404 Not Found).
Code Location: https://github.com/your-username/repo-name/blob/main/server/imageGeneration.ts
Symptoms
- All models return errors on both endpoints (hnd1 and sfo1).
- Unable to generate any images.
- Spent hours trying to troubleshoot.
Expected Behavior
According to the official documentation, at least gemini-2.5-flash-image should work and return base64 encoded image data.
Request
- Confirm the current status of the Zeabur AI Hub image generation service.
- Provide a list of available image generation models.
- If there is a service outage, please provide an estimated time for a fix.
- If this is a configuration issue, please provide the correct configuration method.
Additional Information
- API Key verification is working (other AI Hub features work fine).
- Confirmed model names and endpoints in the official documentation.
- Tried both geographic endpoints.