Skip to main content
POST
/
images
/
generations
Image Generation
curl --request POST \
  --url https://api.euron.one/api/v1/euri/images/generations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "prompt": "<string>",
  "n": 123,
  "size": "<string>",
  "quality": "<string>",
  "response_format": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.euri.ai/llms.txt

Use this file to discover all available pages before exploring further.

Request

POST https://api.euron.one/api/v1/euri/images/generations

Body parameters

model
string
required
Image model ID. Currently available: gemini-3-pro-image-preview.
prompt
string
required
Text description of the image to generate.
n
integer
Number of images to generate. Default: 1.
size
string
Image dimensions. Options: "1024x1024", "512x512", etc.
quality
string
Image quality. Options: "standard", "hd".
response_format
string
Format of the response. Options: "url", "b64_json".

Examples

curl -X POST https://api.euron.one/api/v1/euri/images/generations \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_EURI_API_KEY" \
  -d '{
    "model": "gemini-3-pro-image-preview",
    "prompt": "A futuristic city skyline at sunset, digital art style",
    "n": 1,
    "size": "1024x1024"
  }'

Response

{
  "created": 1744998577,
  "data": [
    {
      "url": "https://...",
      "revised_prompt": "A futuristic city skyline..."
    }
  ]
}

Pricing

gemini-3-pro-image-preview: $0.04 per image (+ 15% markup).