Image Generator API v3.0.0

Generate social media images with custom text overlays, Google Fonts, and advanced styling

Endpoints

GET/health - Health check
GET/fonts - List available fonts NEW
POST/generate - Generate image

What's New in v3.0.0

Available Fonts

arial, helvetica, times, courier, georgia, verdana, impact, comic-sans, dancing-script, great-vibes, pacifico, sacramento, playfair, playfair-display, cormorant, cormorant-garamond, lora, montserrat, poppins, raleway, oswald, bebas, bebas-neue, abril, abril-fatface

Parameters

ParameterTypeDefaultDescription
imageUrlstring-Background image URL
imageDatastring-Base64 background image
textItemsarray[]Array of text objects
textstring-Legacy single text mode
widthnumber1080Canvas width
heightnumber1080Canvas height
overlayOpacitynumber0.4Background overlay opacity (0.0-1.0) NEW
overlayColorstring"0,0,0"Overlay RGB color NEW
backgroundColorstring"linear-gradient"Solid color or "linear-gradient" NEW
gradientColorsobject{start:'#5b2c87',end:'#66cc00'}Gradient start/end colors
outputFormatstring"png""png", "jpeg", or "base64" NEW
jpegQualitynumber0.92JPEG quality (0.0-1.0) NEW

Text Item Object

{ "text": "Your text here", "position": "middle-center", "fontSize": 48, "fontColor": "white", "fontFamily": "playfair", "fontWeight": "regular", "textAlign": "center", "lineHeight": 1.4, "maxWidth": 900, "verticalOffset": 0, "textShadow": { "color": "rgba(0,0,0,0.8)", "blur": 20, "offsetX": 3, "offsetY": 3 } }

Font Weight Options NEW

light (300), regular (400), bold (700), italic

Example: Quote Image

{ "imageUrl": "https://example.com/sunset.jpg", "width": 1080, "height": 1080, "overlayOpacity": 0.35, "textItems": [ { "text": "Good morning.", "position": "top-center", "fontSize": 72, "fontFamily": "playfair", "fontWeight": "bold", "fontColor": "white", "textShadow": true }, { "text": "The reality of life is that your perceptions — right or wrong — influence everything else you do.", "position": "middle-center", "fontSize": 38, "fontFamily": "lora", "fontWeight": "regular", "fontColor": "white", "maxWidth": 900, "lineHeight": 1.6, "textShadow": { "color": "rgba(0,0,0,0.6)", "blur": 15 } }, { "text": "Powered by Kwata Team", "position": "bottom-center", "fontSize": 22, "fontFamily": "montserrat", "fontWeight": "light", "fontColor": "rgba(255,255,255,0.6)", "textShadow": false } ] }