v31

latestOpenAPI 3.1.0Proprietaryraw.githubusercontent.com2026-01-07133341.7 KB
Generations

List generations

Retrieve a list of generations with optional filtering and sorting

get/generations

Query parameters

limitinteger
offsetinteger

Response

Generations found

has_moreboolean

Whether there are more generations

countinteger

The number of generations returned

limitinteger

The limit of the generations requested

offsetinteger

The offset of the generations requested

Example response

{
  "has_more": false,
  "count": 1,
  "limit": 100,
  "offset": 0,
  "generations": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "state": "completed",
      "failure_reason": null,
      "created_at": "2023-06-01T12:00:00Z",
      "assets": {
        "video": "https://example.com/video.mp4"
      },
      "version": "v1.6",
      "request": {
        "prompt": "A serene lake surrounded by mountains at sunset",
        "aspect_ratio": "16:9",
        "loop": true,
        "keyframes": {
          "frame0": {
            "type": "image",
            "url": "https://example.com/image.jpg"
          },
          "frame1": {
            "type": "generation",
            "id": "123e4567-e89b-12d3-a456-426614174000"
          }
        }
      }
    }
  ]
}