Skip to main content
GET
/
tryon
/
v1
/
generations
/
{id}
curl "https://api.genlook.app/tryon/v1/generations/cm8gen456xyz" \
  -H "x-api-key: gk_your_api_key"
{
  "generationId": "cm8gen456xyz",
  "status": "PENDING",
  "createdAt": "2026-03-30T10:00:00.000Z",
  "updatedAt": "2026-03-30T10:00:00.000Z"
}
Returns the current status of a generation. When COMPLETED, includes a signed URL to the result image.

Path Parameters

id
string
required
The generationId from Create Try-On.
curl "https://api.genlook.app/tryon/v1/generations/cm8gen456xyz" \
  -H "x-api-key: gk_your_api_key"

Response

generationId
string
required
The generation ID.
status
string
required
One of: PENDING, PROCESSING, COMPLETED, FAILED.
resultImageUrl
string
Signed URL to the result image. Only present when status is COMPLETED.
errorMessage
string
Error description. Only present when status is FAILED.
createdAt
string
required
ISO 8601 timestamp.
updatedAt
string
required
ISO 8601 timestamp of the last status change.
{
  "generationId": "cm8gen456xyz",
  "status": "PENDING",
  "createdAt": "2026-03-30T10:00:00.000Z",
  "updatedAt": "2026-03-30T10:00:00.000Z"
}