Get a Task
curl --request GET \
--url https://api.monaco.com/v1/tasks/{task_id}import requests
url = "https://api.monaco.com/v1/tasks/{task_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.monaco.com/v1/tasks/{task_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.monaco.com/v1/tasks/{task_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.monaco.com/v1/tasks/{task_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.monaco.com/v1/tasks/{task_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.monaco.com/v1/tasks/{task_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_body{
"data": {
"id": "tsk_abc123",
"account_id": "acc_def456",
"opportunity_id": "opp_ghi789",
"title": "Send follow-up proposal",
"description": "Send the updated pricing proposal to the procurement team",
"task_type": "General Action Item",
"assignee": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"status": "Done",
"due_at": "2025-07-01T17:00:00Z",
"completed_at": "2025-06-28T11:00:00Z",
"created_at": "2025-06-15T10:30:00Z",
"updated_at": "2025-06-28T11:00:00Z",
"message_draft": {
"recipients": [
{
"name": "Jane Smith",
"email": "jane@acme.com"
}
],
"cc": [
{
"name": "John Doe",
"email": "john@acme.com"
}
],
"subject": "Pricing follow-up",
"body": "Hi Jane, following up on the proposal we discussed..."
}
},
"meta": {
"timestamp": "2026-04-21T12:00:00Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Tasks
Get a Task
Gets a single task by its task_id.
GET
/
v1
/
tasks
/
{task_id}
Get a Task
curl --request GET \
--url https://api.monaco.com/v1/tasks/{task_id}import requests
url = "https://api.monaco.com/v1/tasks/{task_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.monaco.com/v1/tasks/{task_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.monaco.com/v1/tasks/{task_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.monaco.com/v1/tasks/{task_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.monaco.com/v1/tasks/{task_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.monaco.com/v1/tasks/{task_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_body{
"data": {
"id": "tsk_abc123",
"account_id": "acc_def456",
"opportunity_id": "opp_ghi789",
"title": "Send follow-up proposal",
"description": "Send the updated pricing proposal to the procurement team",
"task_type": "General Action Item",
"assignee": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"status": "Done",
"due_at": "2025-07-01T17:00:00Z",
"completed_at": "2025-06-28T11:00:00Z",
"created_at": "2025-06-15T10:30:00Z",
"updated_at": "2025-06-28T11:00:00Z",
"message_draft": {
"recipients": [
{
"name": "Jane Smith",
"email": "jane@acme.com"
}
],
"cc": [
{
"name": "John Doe",
"email": "john@acme.com"
}
],
"subject": "Pricing follow-up",
"body": "Hi Jane, following up on the proposal we discussed..."
}
},
"meta": {
"timestamp": "2026-04-21T12:00:00Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}⌘I