Skip to content

AI Image Generator

Heavstal Image Engine uses high-speed latent diffusion models to generate images from text and provides you with a download link.

POST /image

FieldTypeRequiredDescription
promptstringYesDescription of the image(s). Pass a string
countnumberNonull
const res = await fetch('https://heavstal.com.ng/api/v1/image', {
method: 'POST',
headers: { 'x-api-key': 'YOUR_KEY' },
body: JSON.stringify({
prompt: "A cyberpunk city in rain, neon lights"
})
});
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"prompt": "A cyberpunk city...",
"url": "https://img-url.com/xyz.jpg",
"model": "turbo",
"note": "Hosted via Catbox"
}
}