Get the current status of a task
Returns just the current status of a task (created, running, finished, stopped, paused, or failed). This is more lightweight than the full task details endpoint.
ID of the task to check status for
The endpoint returns the status as a simple string value (not wrapped in an object).
The status field can have one of the following values:
created
: Task is initialized but not yet startedrunning
: Task is currently executingfinished
: Task has completed successfullystopped
: Task was manually stoppedpaused
: Task execution is temporarily pausedfailed
: Task encountered an error and could not completeThis endpoint is useful for:
Use this endpoint instead of the full task details endpoint when you only need to check the current status, as it’s much faster and uses less bandwidth.