Skip to main content
GET
/
api
/
v1
/
tasks
List tasks
curl --request GET \
  --url http://localhost:3001/api/v1/tasks \
  --cookie nut-session=
"<unknown>"

Authorizations

nut-session
string
cookie
required

Session cookie authentication

Query Parameters

status
enum<string>

Filter by task status Task status

Available options:
draft,
backlog,
ready,
queued,
active,
blocked,
review,
revision,
done,
canceled,
duplicate
author
string

Filter by author

priority
enum<string>

Filter by priority level

Available options:
low,
medium,
high,
critical
tags
string

Filter by tags (comma-separated)

q
string

Fuzzy search across title, content, ID, author name, and tags. Results are ranked by relevance and include snippet/score fields.

limit
integer

Maximum number of results per page (1-100)

Required range: 1 <= x <= 100
offset
integer
default:0

Number of results to skip for pagination (default 0)

Required range: x >= 0
full
enum<string>
default:false

Set to "true" to include full content, planSteps, and comments instead of summaries

Available options:
true,
false

Response

List of tasks

The response is of type any.