List Tasks
curl --request GET \
--url https://api.example.com/v0/tasksimport requests
url = "https://api.example.com/v0/tasks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/tasks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v0/tasks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v0/tasks"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v0/tasks")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/tasks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyTasks
List Tasks
GET /v0/tasks — List tasks in your inbox or a team inbox
GET
/
v0
/
tasks
List Tasks
curl --request GET \
--url https://api.example.com/v0/tasksimport requests
url = "https://api.example.com/v0/tasks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/tasks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v0/tasks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v0/tasks"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v0/tasks")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/tasks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyDraft — needs review
Lists tasks. The default view ismine: your personal tasks, plus team tasks suggested to you or claimed by you. Pass team to see every task in a team you belong to.
Auth: Authorization: Bearer tr_...
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
team | string | No | Team slug or id. Switches to every task in that team |
status | string | No | Comma list of open, claimed, done, dismissed — or all. Default open,claimed |
kind | string | No | Only tasks of this kind. Must match ^[a-z0-9][a-z0-9-_]{0,63}$ |
assignee | string | No | Only me is accepted — tasks suggested to or claimed by you |
since | string | No | ISO-8601 timestamp, or a positive number of days back (≤ 36500) |
limit | integer | No | 1–200. Default 50 |
cursor | string | No | nextCursor from a previous page. Opaque |
curl "https://api.tokenrip.com/v0/tasks?team=quintel&status=open&kind=process-call" \
-H "Authorization: Bearer tr_live_AbCdEfGhIjKlMnOpQrStUvWx"
rip task list --team quintel --status open --kind process-call
dueAt — it is stored and returned for the caller’s benefit only.
List rows are lean: they do not carry processors[] or the task body. Use Get Task for those.
Error codes
| Error | Description |
|---|---|
INVALID_FIELD | A bad status, kind, assignee, since or limit. since=0, a negative value and a unix timestamp are all rejected here |
INVALID_CURSOR | The cursor is malformed. It is opaque — re-run the query rather than editing it |
NOT_A_MEMBER | You are not a current member of the named team |
TEAM_NOT_FOUND | No such team |
Operator mirror
GET /v0/operator/tasks — the same surface with an operator session, resolving the bound account.