Cliffside glass houseExample 01dall-e-3
dall-e-3 is available through TTAPI. OpenAI image generation through TTAPI, with fixed-price GPT Image models and official-channel DALL·E 2 and DALL·E 3 support.
Cliffside glass houseExample 01
Circuit-board mindExample 02
Bioluminescent libraryExample 03
Celestial night trainExample 04Prompt to image, in context
A modern architectural building with large glass windows, situated on a cliff overlooking a serene ocean at sunset.
An icon of a human brain constructed from intricate white and cyan printed-circuit traces, isolated on a dark background, crisp three-dimensional vector style
A vast bioluminescent library grown inside the hollow of an ancient tree, with organic bookshelves, spiral staircases, floating books, and a lone scholar in a cobalt cloak beneath a star-filled sky
What you can build with dall-e-3
Prompt driven generation
Submit a concise prompt and get production-ready image output through one TTAPI job.
Core controls only
Keep integration simple with prompt, model, output settings, and callback handling.
Async result flow
Use polling or webhook callbacks so long-running generations do not block your UI.
Ready for product UI
Return OpenAI Image results that can be displayed, stored, or passed into downstream workflows.
Per-action, in quota
Usage is metered in quota by model, action, and output settings.
Headers and submit parameters
Use the endpoint below with your TTAPI key and the request fields shown.
Headers
TT-API-KEYstringrequiredYour TTAPI API key.
Content-TypestringrequiredUse application/json.
Body
promptstringrequiredImage description, up to 4,000 characters.
modelenumrequiredUse dall-e-3.
nintegeroptionalDALL·E 3 generates exactly one image per request.
qualityenumoptionalstandard or hd.
response_formatenumoptionalReturn url or b64_json. Generated URLs remain valid for 60 minutes.
sizeenumoptional1024x1024, 1792x1024, or 1024x1792.
styleenumoptionalvivid or natural.
userstringoptionalA unique identifier for the end user, used for abuse monitoring.
From key to first result
Copy the resolved endpoint, authentication headers, and request body for this model.
curl --request POST \
--url https://api.ttapi.io/v1/images/generations \
--header 'TT-API-KEY: $TTAPI_KEY' \
--header 'Content-Type: application/json' \
--data '{"prompt":"A modern architectural building with large glass windows, situated on a cliff overlooking a serene ocean at sunset.","model":"dall-e-3","n":1,"quality":"hd","response_format":"url","size":"1024x1024","style":"vivid","user":"ttapi-demo"}'