Skip to content

Get a task list by id

GET /v1/lists/{listId}

Returns a single task list. The API key’s owner must be a member of the list. Unlike List task lists, this endpoint also returns archived lists the owner belongs to.

NameTypeRequiredDescription
listIdstringyesNumeric ID of the list.

No request body.

200 OK:

FieldTypeDescription
idnumberNumeric ID of the list.
namestringDisplay name of the list.
colorstringColor tag of the list.
isArchivedbooleantrue if archived.
createdAtstringISO 8601 timestamp the list was created.
updatedAtstringISO 8601 timestamp of the last update.
{
  "id": 27,
  "name": "Q3 launch",
  "color": "Blue",
  "isArchived": false,
  "createdAt": "2026-04-12T09:18:33.000Z",
  "updatedAt": "2026-05-08T11:02:08.000Z"
}
StatusBodyWhen
400{ "error": "listId must be a number." }listId path parameter is not numeric.
403{ "error": "You do not have access to this list." }The API key’s owner is not a member of the list.
404{ "error": "List <id> not found." }No list with that ID exists in the bound team.