dall-e-3

by OpenAIImage

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.

InputPrompttext
Models5available
FlowAsyncresult URL
Price20% offofficial
Modern glass house on an ocean cliff at sunsetCliffside glass houseExample 01
Human brain silhouette formed from white and cyan circuit-board tracesCircuit-board mindExample 02
Scholar in a cobalt cloak standing inside a vast glowing library grown from an ancient treeBioluminescent libraryExample 03
Black and gold Art Deco train reflected in salt flats beneath a ringed planet and meteor showerCelestial night trainExample 04
Examples

Prompt to image, in context

01 · Cliffside glass housedall-e-3
Prompt

A modern architectural building with large glass windows, situated on a cliff overlooking a serene ocean at sunset.

02 · Circuit-board minddall-e-3
Prompt

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

03 · Bioluminescent librarydall-e-3
Prompt

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

Capabilities

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.

Pricing

Per-action, in quota

Usage is metered in quota by model, action, and output settings.

Official image generationOfficial pricing
ModelTTAPI billingUnit
dall-e-320% off official pricing/ image
API request

Headers and submit parameters

Use the endpoint below with your TTAPI key and the request fields shown.

POSThttps://api.ttapi.io/v1/images/generations

Headers

TT-API-KEYstringrequired

Your TTAPI API key.

Content-Typestringrequired

Use application/json.

Body

promptstringrequired

Image description, up to 4,000 characters.

modelenumrequired

Use dall-e-3.

nintegeroptional

DALL·E 3 generates exactly one image per request.

qualityenumoptional

standard or hd.

response_formatenumoptional

Return url or b64_json. Generated URLs remain valid for 60 minutes.

sizeenumoptional

1024x1024, 1792x1024, or 1024x1792.

styleenumoptional

vivid or natural.

userstringoptional

A unique identifier for the end user, used for abuse monitoring.

Open the official TTAPI documentation
Integrate

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"}'