Skip to content

List task lists

GET /v1/lists

Returns every non-archived task list the authenticated user is a member of, scoped to the team the API key is bound to. Archived lists are never returned.

This endpoint takes no query parameters or body. Only the standard auth headers are required.

200 OK — array of task list objects:

FieldTypeDescription
idnumberNumeric ID of the list.
namestringDisplay name of the list.
colorstringHex color (e.g. #3b82f6) used in the UI.
[
  { "id": 12, "name": "Marketing site", "color": "#3b82f6" },
  { "id": 19, "name": "Q1 launch",      "color": "#f59e0b" }
]