Retrieve a subtask
Retrieves a subtask object.
Parameters
expand
array
Array of relationships to expand. Supported values:
members, parent, subtask_list.Returns
Returns the subtask object for a valid identifier.
get
/api/tasks/{taskId}/subtasks/{subtaskId}
curl https://{workspace}.kitchen.co/api/tasks/{taskId}/subtasks/{subtaskId} \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Requested-With: XMLHttpRequest' \
-H 'Authorization: Bearer {API_KEY}'
Response
{
"completed_at": null,
"created_at": "2026-03-21T07:52:35+00:00",
"due_at": "2026-03-25",
"id": "tsk_9bbcb52099a37312fbff58c8",
"members": [
"u_c3715664badcadf714053dd0",
"u_e2e07ccb713c2afe739a7c04"
],
"parent": "tsk_9f82b648c61222c4086850c2",
"subtask_list": "tskl_9bbcb52099a37312fbff58c8",
"title": "The subtask title"
}