← Back to catalog

Imagen 3 Fast

Live
imagegen

Low-latency Imagen 3 tier for rapid iteration.

Endpoint

POSThttps://brahmand-api.bulletshorts.co/v1/image/imagen-3-fast

Authenticate with the X-API-Key request header.

Pricing

3 credits / image1 credit = ₹1. Billed on success: per image.
Price varies by resolution — pass resolution in your request. Credit cost per image:
resolutioncredits / imagevs base
1k31×
2k41.5×
4k62×

List price. Volume / bulk customers get a discounted rate — contact us for account pricing.

Parameters

NameTypeRequiredDescriptionDefault / options
promptstringrequiredText prompt describing the desired output.
nnumberoptionalNumber of images to generate (1-4).
default: 1
aspect_ratiostringoptionalOutput aspect ratio.
default: 1:1
negative_promptstringoptionalThings to avoid in the output.
seednumberoptionalRNG seed (0-4294967295) for deterministic output. Forces add_watermark off when set.
add_watermarkbooleanoptionalAdd SynthID watermark. Cannot be combined with seed.
default: true
person_generationstringoptionalAllow people in output: dont_allow | allow_adult | allow_all.
default: allow_adult
safety_settingstringoptionalSafety filter: block_low_and_above | block_medium_and_above | block_only_high | block_none.
enhance_promptbooleanoptionalLet the model LLM-rewrite the prompt for better results.
languagestringoptionalPrompt language hint (e.g. en, auto).

Request

curl
curl -X POST https://brahmand-api.bulletshorts.co/v1/image/imagen-3-fast \
  -H "X-API-Key: $TRINETRA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"prompt":"A neon-lit Tokyo street at night","n":1}'
request body (JSON)
{
  "prompt": "A neon-lit Tokyo street at night",
  "n": 1
}

Response

Submitting a job returns 202 Accepted with a job id. Poll GET /v1/jobs/{id} until the job reaches a terminal state, or register a webhook to be notified.

202 Accepted
{
  "job_id": "job_imagen3fast_a1b2c3",
  "status": "queued"
}
GET /v1/jobs/{id} → succeeded
{
  "id": "job_imagen3fast_a1b2c3",
  "model": "imagen-3-fast",
  "status": "succeeded",
  "output": {
    "outputs": [
      {
        "url": "https://cdn.trinetra.ai/out/imagen-3-fast/a1b2c3.png",
        "type": "image"
      }
    ]
  },
  "credits_charged": 10
}

Webhook: set a webhook_url on your API key to receive a POST with the terminal job document instead of polling.