List tasks
Returns tasks the authenticated user has access to (i.e. tasks in teams they belong to). Default sort is newest first.
Authorizations
API key obtained from the Slog dashboard or returned by the signup/invite-redeem
flows. Pass as the slog-api-key header.
Query Parameters
Comma-separated list of fields to return. Supports brace notation for nested
objects: fields=id,title,assignee{name,email}. When omitted, a default set
of fields is returned.
Maximum number of results to return per page.
1 <= x <= 250Opaque cursor from the nextCursor field of a previous response. Pass this to
fetch the next page.
Structured filter using bracket notation: filter[<op>][<field>]=<value>.
Supported operators:
eq— equalsneq— not equalsgt/gte— greater than / greater than or equallt/lte— less than / less than or equalcontains— case-insensitive substring matchstartsWith— case-insensitive prefix matchin— one of (repeat the parameter for multiple values)
Examples:
filter[eq][status]=TODO
filter[contains][title]=auth
filter[in][status]=TODO&filter[in][status]=IN_PROGRESS
filter[gte][dueDate]=2026-01-01Sort using bracket notation: sort[<field>]=asc|desc.
Example: sort[createdAt]=desc