← Back to catalog

Vertex Virtual Try-On

Live
imagetryon

Render a product/garment onto a person image (virtual try-on).

Endpoint

POSThttps://brahmand-api.bulletshorts.co/v1/image/vertex-virtual-tryon

Authenticate with the X-API-Key request header.

Pricing

8 credits / image1 credit = ₹1. Billed on success: per image.

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

Parameters

NameTypeRequiredDescriptionDefault / options
person_image_urlstringrequiredImage of the person.
product_image_urlstringrequiredImage of the garment/product to try on.
sample_countnumberoptionalNumber of images to generate (1-4).
default: 1
base_stepsnumberoptionalSampling steps for the base model (1-100).
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.

Request

curl
curl -X POST https://brahmand-api.bulletshorts.co/v1/image/vertex-virtual-tryon \
  -H "X-API-Key: $TRINETRA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"person_image_url":"https://example.com/model.jpg","product_image_url":"https://example.com/jacket.png"}'
request body (JSON)
{
  "person_image_url": "https://example.com/model.jpg",
  "product_image_url": "https://example.com/jacket.png"
}

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_vertexvirtualtryon_a1b2c3",
  "status": "queued"
}
GET /v1/jobs/{id} → succeeded
{
  "id": "job_vertexvirtualtryon_a1b2c3",
  "model": "vertex-virtual-tryon",
  "status": "succeeded",
  "output": {
    "outputs": [
      {
        "url": "https://cdn.trinetra.ai/out/vertex-virtual-tryon/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.