cURL
curl --request GET \ --url https://api.unifically.com/kling-o1/status/{task_id} \ --header 'Authorization: Bearer <token>'
{ "code": 200, "data": { "status": "processing", "task_id": "dd55ae25-adff-47a0-9194-6a37845b58e4" } }
Check the status of your Kling O1 generation tasks
curl --request GET \ --url https://api.unifically.com/kling-o1/status/TASKID \ --header 'Authorization: Bearer YOUR_API_KEY'
task_id
{ "code": 200, "data": { "status": "completed", "task_id": "dd55ae25-adff-47a0-9194-6a37845b58e4", "output": { "video_url": "https://files.storagecdn.online/video/2b186a1a-9a07-4e7f-9438-d3d380e00e59.mp4" } } }
{ "code": 400, "data": { "task_id": "abc123def456", "status": "failed", "message": "Generation failed", "code": "GENERATION_FAILED" } }
processing
completed
failed