Skip to content

Get Task Status

GET https://api.slidespeak.co/api/v1/task_status/{{task_id}}

Retrieves the current status and result of an asynchronous task, such as presentation generation or document processing. Use the task ID returned from other endpoints to poll for progress, completion, or errors. The response includes the task’s status, result, and any additional information.


Content-Type: string

application/json

X-API-Key: string

The API key to use for the request.


<YOUR_API_KEY>


task_id: string

The ID you get after starting a task.


Terminal window
curl -X GET "https://api.slidespeak.co/api/v1/task_status/9649d202-03ac-437a-80e8-ff91ff4ace67" -H "Content-Type: application/json" -H "x-api-key: YOUR_API_KEY"

{
"task_id": "9649d202-03ac-437a-80e8-ff91ff4ace67",
"task_status": "SUCCESS",
"task_result": ...,
"task_info": ...
}