POST
/
v1
/
image
/
gen
/
dalle
curl --request POST \
  --url https://openapi.monica.im/v1/image/gen/dalle \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "model": "dall-e-3",
  "prompt": "A cute baby sea otter",
  "n": 1,
  "quality": "standard",
  "size": "1024x1024",
  "style": "vivid"
}'
{
  "data": [
    {
      "url": "<string>"
    }
  ]
}
Follow the quickstart guide to get your own API Key.

DALL·E 3 is OpenAI’s latest and most advanced text-to-image AI model.

  • Produces highly detailed and photorealistic images
  • Excellent at capturing complex scenes and concepts
  • Superior understanding of spatial relationships and composition

See the pricing page for pricing details.

Resources

Previews

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200 - application/json
Success

The response is of type object.