Skip to main content
GET
/
tryon
/
v1
/
generations
curl "https://api.genlook.app/tryon/v1/generations?limit=10&status=COMPLETED" \
  -H "x-api-key: gk_your_api_key"
{
  "items": [
    {
      "id": "cm8gen456xyz",
      "status": "COMPLETED",
      "productDescription": "A comfortable cotton t-shirt in navy blue",
      "generationTimeMs": 12500,
      "createdAt": "2026-03-30T10:00:00.000Z",
      "updatedAt": "2026-03-30T10:00:15.000Z"
    }
  ],
  "nextCursor": null,
  "hasMore": false,
  "count": 1
}
Returns a paginated list of your try-on generations, ordered by creation date (newest first).

Request

limit
number
Number of generations to return (1-200, default 50).
cursor
string
Cursor for pagination. Use nextCursor from the previous response.
status
string
Filter by status: PENDING, PROCESSING, COMPLETED, or FAILED.
curl "https://api.genlook.app/tryon/v1/generations?limit=10&status=COMPLETED" \
  -H "x-api-key: gk_your_api_key"

Response

items
object[]
required
Array of generation objects.
nextCursor
string
Cursor for the next page.
hasMore
boolean
required
Whether more results are available.
{
  "items": [
    {
      "id": "cm8gen456xyz",
      "status": "COMPLETED",
      "productDescription": "A comfortable cotton t-shirt in navy blue",
      "generationTimeMs": 12500,
      "createdAt": "2026-03-30T10:00:00.000Z",
      "updatedAt": "2026-03-30T10:00:15.000Z"
    }
  ],
  "nextCursor": null,
  "hasMore": false,
  "count": 1
}