Passer au contenu principal
GET
/
projects
/
{projectId}
/
tasks
List project tasks
curl --request GET \
  --url https://api.youka.io/api/v1/projects/{projectId}/tasks \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "type": "create-karaoke",
    "status": "created",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "error": "<string>"
  }
]

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

projectId
string
requis

Réponse

200 - application/json

Project task list

id
string
requis
type
enum<string>
requis
Options disponibles:
create-karaoke,
sync-lyrics,
stem-separation,
generate-video,
generate-chords,
export-project
status
enum<string>
requis
Options disponibles:
created,
queued,
in-progress,
completed,
failed,
cancelled,
timed-out,
finalized
createdAt
string
requis
updatedAt
string
requis
error
string | null