Skip to main content
GET
/
generations
/
running
List running generations
curl --request GET \
  --url https://open.skills.video/api/v1/generations/running \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "gen_123",
    "status": "IN_PROGRESS",
    "usage": {
      "total": 20,
      "subscription": 20,
      "permanent": 0
    },
    "input": {
      "prompt": "a cat",
      "aspect_ratio": "1:1",
      "resolution": "1024x1024",
      "n": 1
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.skills.video/llms.txt

Use this file to discover all available pages before exploring further.

Return generation tasks that are still queued or in progress for the current workspace scope.

Authorizations

Authorization
string
header
required

API Key for API endpoints

Query Parameters

workspace
string

Optional workspace document id override.

limit
integer

Maximum number of tasks to return. Default 50.

Required range: 1 <= x <= 100

Response

Queued or running generation tasks

id
string
required

Generation id.

status
enum<string>
required

Queue status

Available options:
IN_QUEUE,
IN_PROGRESS,
COMPLETED,
FAILED,
CANCELED
usage
object
required

Credit usage breakdown for the request

input
object
required

Normalized generation input payload.