API REFERENCE
Get Tasks
On this page
/api/tasksRetrieve scheduled tasks. Each task includes recent_runs (last 5 runs), upcoming (next scheduled run times) sourced directly from the Trigger.dev API, and owner_email when an account email exists for the task owner. Supports filtering by id, account_id, or artist_account_id.
Authentication
x-api-key in header
bearerAuth bearer
Request
curl --request GET \
--url 'https://api.recoupable.dev/api/tasks' \
--header 'x-api-key: YOUR_API_KEY'Replace the YOUR_ placeholders with your values. Required query parameters are included; optional parameters are listed below.
Parameters
Query parameters
idstringFilter by task ID (UUID). Returns a single task matching the provided ID. Admin callers may retrieve any task by ID regardless of owner; non-admin callers only receive the task if it belongs to their authenticated account.
account_idstringFilter tasks to only include those for the specified account.
artist_account_idstringFilter tasks to only include those for the specified artist account.
Responses
200Tasks retrieved successfully+
application/json
statusstring · enumrequiredStatus of the request
Values: "success", "error"
tasksarray<Task>requiredArray of task objects
Item properties for tasks
idstringUnique identifier for the task
format: uuid
titlestringDescriptive title or name of the task
promptstringDetailed instruction or prompt for task execution
schedulestringCron expression defining when the task should execute (e.g., '0 10 * * *')
timezonestringnullableIANA time zone the task's cron is interpreted in, read from the Trigger.dev schedule (the source of truth). Null when the task has no schedule or the timezone can't be read.
account_idstringUnique identifier for the associated account
format: uuid
artist_account_idstringUnique identifier for the associated artist account
format: uuid
enabledbooleannullableWhether the task is enabled. Defaults to true.
trigger_schedule_idstringnullableIdentifier for the trigger schedule associated with this task
recent_runsarray<TaskRunResponse>Last 5 runs for this task, sourced from the Trigger.dev API.
Item properties for recent_runs
idstringrequiredThe unique run identifier, prefixed with run_
statusstring · enumrequiredCurrent run status
Values: "PENDING_VERSION", "DELAYED", "QUEUED", "EXECUTING", "REATTEMPTING", "FROZEN", "COMPLETED", "CANCELED", "FAILED", "CRASHED", "INTERRUPTED", "SYSTEM_FAILURE"
taskIdentifierstringrequiredThe task type identifier (e.g. 'setup-sandbox', 'run-sandbox-command')
idempotencyKeystringnullableIdempotency key used to deduplicate trigger requests
versionstringThe worker version that executed the run
isTestbooleanWhether this is a test run
createdAtstringrequiredWhen the run was created (ISO 8601)
format: date-time
updatedAtstringrequiredWhen the run was last updated (ISO 8601)
format: date-time
startedAtstringnullableWhen execution started (null if not yet started)
format: date-time
finishedAtstringnullableWhen the run finished (null if still running)
format: date-time
delayedUntilstringnullableIf delayed, when the run becomes eligible to execute
format: date-time
ttlanynullableTime-to-live. If the run is not started within this duration, it expires.
expiredAtstringnullableWhen the run expired (null if not expired)
format: date-time
tagsarray<string>Tags associated with this run (max 10)
Item properties for tags
string
metadataobjectnullableJSON metadata attached to the run
costInCentsnumberCompute cost of the run in cents
baseCostInCentsnumberBase invocation cost in cents
durationMsnumberCompute duration in milliseconds
envobjectEnvironment the run executed in
Properties for env
idstringnamestringuserstringnullabledepthintegerNesting depth for child runs
batchIdstringnullableBatch ID if triggered as part of a batch
triggerFunctionstring · enumThe function used to trigger this run
Values: "trigger", "triggerAndWait", "batchTrigger", "batchTriggerAndWait"
payloadanynullableInput payload for the task. Only present when retrieving by runId.
outputone ofnullableTask output data. Only present when retrieving by runId, and only populated when status is COMPLETED. Shape varies by taskIdentifier. The create-content task returns the schema below; other tasks return their own.
Properties for output
oneOf · CreateContentRunOutput 1
Output payload for a create-content task run. Returned in output when status is COMPLETED. Agents should poll /api/tasks/runs?runId=… and read these fields once the run is done.
videoSourceUrlstringrequiredURL to the rendered final 9:16 video (image + motion + audio + caption already composed).
format: uri
imageUrlstringrequiredURL to the base image used for video generation.
format: uri
captionTextstringrequiredThe caption text burned into the video.
templatestringrequiredTemplate id used for this run (e.g. album-record-store, artist-caption-bedroom).
lipsyncbooleanWhether lipsync was applied (audio-driven mouth animation).
audioobjectMetadata about the song clip used in the final composition.
Properties for audio
songTitlestringsongFilenamestringstartSecondsnumberOffset into the source song where the clip starts.
durationSecondsnumberLength of the audio clip in seconds.
clipLyricsstringnullableLyrics for the chosen clip, when available.
clipMoodstringnullableInferred mood for the chosen clip, when available.
oneOf · object 2
Generic task output (for tasks not yet schema'd)
object
errorobjectnullableError details if the run failed. Only present when retrieving by runId.
Properties for error
messagestringHuman-readable error message
namestringError name or type
stackTracestringStack trace
attemptsarray<object>Attempt history. Only present when retrieving by runId.
Item properties for attempts
idstringAttempt ID, prefixed with attempt_
statusstring · enumValues: "PENDING", "EXECUTING", "PAUSED", "COMPLETED", "FAILED", "CANCELED"
createdAtstringformat: date-time
updatedAtstringformat: date-time
startedAtstringnullableformat: date-time
completedAtstringnullableformat: date-time
errorobjectnullableProperties for error
messagestringnamestringstackTracestringscheduleobjectnullableSchedule information if triggered by a schedule. Only present when retrieving by runId.
relatedRunsobjectnullableRelated run references (root, parent, children). Only present when retrieving by runId.
upcomingarray<string>Next scheduled run times.
Item properties for upcoming
string
owner_emailstringnullablePrimary email address for the task owner account when one exists.
artist_namestringnullableDisplay name of the artist account the task runs for (artist_account_id), so a task list can label rows without a roster lookup. Null when the artist account no longer exists.
modelstringnullableAI model identifier used when the task runs. When present as a string, must be non-empty; otherwise null if unset.
minLength: 1
errorstringError message (only present if status is error)
400Bad request+
application/json
errorintegerrequiredformat: int32
messagestringrequired401Unauthorized - missing or invalid credentials+
application/json
errorintegerrequiredformat: int32
messagestringrequired403Forbidden - account_id is outside caller authorization scope+
application/json
errorintegerrequiredformat: int32
messagestringrequired500Internal server error while retrieving tasks.+
application/json
errorintegerrequiredformat: int32
messagestringrequiredFull specification
Download the OpenAPI file for complete schemas, constraints, and examples.
Download releases.jsonView operation source
{
"description": "Retrieve scheduled tasks. Each task includes `recent_runs` (last 5 runs), `upcoming` (next scheduled run times) sourced directly from the Trigger.dev API, and `owner_email` when an account email exists for the task owner. Supports filtering by id, account_id, or artist_account_id.",
"security": [
{
"apiKeyAuth": []
},
{
"bearerAuth": []
}
],
"parameters": [
{
"name": "id",
"in": "query",
"description": "Filter by task ID (UUID). Returns a single task matching the provided ID. Admin callers may retrieve any task by ID regardless of owner; non-admin callers only receive the task if it belongs to their authenticated account.",
"required": false,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "account_id",
"in": "query",
"description": "Filter tasks to only include those for the specified account.",
"required": false,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "artist_account_id",
"in": "query",
"description": "Filter tasks to only include those for the specified artist account.",
"required": false,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"200": {
"description": "Tasks retrieved successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TasksResponse"
}
}
}
},
"400": {
"description": "Bad request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
},
"401": {
"description": "Unauthorized - missing or invalid credentials",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
},
"403": {
"description": "Forbidden - account_id is outside caller authorization scope",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
},
"500": {
"description": "Internal server error while retrieving tasks.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
}
}
}