Projects
List Tasks for Project
Retrieve all non-archived tasks associated with a specific project.
GET
/
api
/
public
/
v1
/
projects
/
{id}
/
tasks
List Tasks for Project
curl --request GET \
--url https://api.example.com/api/public/v1/projects/{id}/tasksimport requests
url = "https://api.example.com/api/public/v1/projects/{id}/tasks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/public/v1/projects/{id}/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/api/public/v1/projects/{id}/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/api/public/v1/projects/{id}/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/api/public/v1/projects/{id}/tasks")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/public/v1/projects/{id}/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_body{
"data": [
{
"id": "tsk_abc...",
"title": "Design Homepage Mockups",
"description": "Figma files for the main landing page",
"status": "IN_PROGRESS",
"priority": "HIGH",
"dueDate": "2026-05-20T00:00:00.000Z",
"estimatedHours": 12,
"actualHours": 4.5,
"createdAt": "2026-05-10T00:00:00.000Z",
"updatedAt": "2026-05-18T00:00:00.000Z",
"assignees": [
{
"id": "usr_789...",
"firstName": "Jane",
"lastName": "Doe"
}
]
}
]
}
This includes task status, priority, due dates, and who the task is assigned to.
Path Parameters
string
required
The unique identifier of the project.
Response
{
"data": [
{
"id": "tsk_abc...",
"title": "Design Homepage Mockups",
"description": "Figma files for the main landing page",
"status": "IN_PROGRESS",
"priority": "HIGH",
"dueDate": "2026-05-20T00:00:00.000Z",
"estimatedHours": 12,
"actualHours": 4.5,
"createdAt": "2026-05-10T00:00:00.000Z",
"updatedAt": "2026-05-18T00:00:00.000Z",
"assignees": [
{
"id": "usr_789...",
"firstName": "Jane",
"lastName": "Doe"
}
]
}
]
}
⌘I
List Tasks for Project
curl --request GET \
--url https://api.example.com/api/public/v1/projects/{id}/tasksimport requests
url = "https://api.example.com/api/public/v1/projects/{id}/tasks"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/public/v1/projects/{id}/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/api/public/v1/projects/{id}/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/api/public/v1/projects/{id}/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/api/public/v1/projects/{id}/tasks")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/public/v1/projects/{id}/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_body{
"data": [
{
"id": "tsk_abc...",
"title": "Design Homepage Mockups",
"description": "Figma files for the main landing page",
"status": "IN_PROGRESS",
"priority": "HIGH",
"dueDate": "2026-05-20T00:00:00.000Z",
"estimatedHours": 12,
"actualHours": 4.5,
"createdAt": "2026-05-10T00:00:00.000Z",
"updatedAt": "2026-05-18T00:00:00.000Z",
"assignees": [
{
"id": "usr_789...",
"firstName": "Jane",
"lastName": "Doe"
}
]
}
]
}