Skip to main content
GET
List tasks

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

type
enum<string> | null

The AI task types the API offers.

Values:

  • transcribe — Speech-to-text transcription (via AssemblyAI) with optional analysis. Returns the transcript inline on the task's result object — there is no file artifact, so output is null and /v1/tasks/{id}/download returns 404.
Available options:
transcribe
status
enum<string> | null

Values:

  • ingesting — External source files are being copied into Framelane storage.
  • queued — Accepted and waiting for a worker to pick it up.
  • processing — Actively rendering or processing.
  • completed — Finished successfully; the output artifact is available.
  • failed — Terminated with an error (see error).
  • cancelled — Cancelled by the caller before completion.
Available options:
ingesting,
queued,
processing,
completed,
failed,
cancelled
limit
integer
default:20
Required range: 1 <= x <= 200
cursor
string | null

Response

Successful Response

data
JobOut · object[]
required
next_cursor
string | null
has_more
boolean
default:false