curl --request GET \
--url http://localhost:8000/api/v1/tasks/status/{task_id} \
--header 'Authorization: Bearer <token>'{
"task_id": "<string>",
"is_ready": true,
"return_value": "<unknown>",
"error": "<string>"
}Get the status of a task by its ID.
curl --request GET \
--url http://localhost:8000/api/v1/tasks/status/{task_id} \
--header 'Authorization: Bearer <token>'{
"task_id": "<string>",
"is_ready": true,
"return_value": "<unknown>",
"error": "<string>"
}The access token received from the authorization server in the OAuth 2.0 flow.