Get Task
curl --request GET \
--url https://api.example.com/v0/tasks/{id}import requests
url = "https://api.example.com/v0/tasks/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/tasks/{id}', 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/{id}",
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/{id}"
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/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/tasks/{id}")
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
Get Task
GET /v0/tasks/:id — One task with its results and the processors that can run it
GET
/
v0
/
tasks
/
{id}
Get Task
curl --request GET \
--url https://api.example.com/v0/tasks/{id}import requests
url = "https://api.example.com/v0/tasks/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v0/tasks/{id}', 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/{id}",
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/{id}"
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/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v0/tasks/{id}")
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
Returns one task with its full body, payload, results andprocessors[].
Auth: Authorization: Bearer tr_...
Response blocks
| Block | Description |
|---|---|
| the task | id, kind, title, body, payload, status, scope, suggestedAssigneeId, claim state (claimedBy, claimedAt, leaseExpiresAt, claimedVia), completion and dismissal state, dueAt, timestamps |
results[] | What the task produced — each { type: "artifact" | "url", id, version?, orphaned } |
processors[] | Mounted skills in scope that declare this kind in tasks.handles |
orphaned: true, rather than throwing them away or overwriting the winner’s output. Branch on the flag.
Processors. Each entry is { slug, mountId, displayName, scope, invocations }, team mounts first. Every invocation names the resolved mount, because the same imprint may be mounted both for the task’s team and personally for you:
{
"slug": "process-call",
"mountId": "8d1a…",
"displayName": "Process Call",
"scope": "team",
"invocations": {
"mcp": "agent_load { \"mountId\": \"8d1a…\", \"task\": \"4f2c…\" }",
"cli": "rip --json agent load process-call --mount 8d1a… --task 4f2c…",
"bootloader": "/tokenrip-bootloader process-call mount:8d1a… task:4f2c…"
}
}
handles is advisory. It never gates a load — it tells you which mounted skill knows how to do this kind of work.
curl "https://api.tokenrip.com/v0/tasks/4f2c1b90-0000-0000-0000-000000000000" \
-H "Authorization: Bearer tr_live_AbCdEfGhIjKlMnOpQrStUvWx"
rip task show 4f2c1b90-…
Error codes
| Error | Description |
|---|---|
TASK_NOT_FOUND | No such task, or it is a personal task you do not own — existence is not leaked |
NOT_A_MEMBER | It is a team task and you are not a current member. The task’s existence is not hidden, because team membership is not a secret |
INVALID_FIELD | The id is not a UUID |
Operator mirror
GET /v0/operator/tasks/{id}.