Get a Sequence
curl --request GET \
--url https://api.monaco.com/v1/sequences/{sequence_id}import requests
url = "https://api.monaco.com/v1/sequences/{sequence_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.monaco.com/v1/sequences/{sequence_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/sequences/{sequence_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/sequences/{sequence_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/sequences/{sequence_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.monaco.com/v1/sequences/{sequence_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": "seq_abc123",
"contact_id": "con_def456",
"name": "Enterprise Onboarding",
"description": "Multi-touch onboarding sequence for enterprise accounts",
"status": "started",
"template_id": "seqt_789ghi",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-05-10T14:22:00Z",
"tasks": [
{
"id": "tsk_abc123",
"sequence_id": "seq_abc123",
"order": 1,
"name": "Send linkedin connection request",
"type": "auto_linkedin_connection",
"status": "completed",
"scheduled_at": "2025-10-14T23:36:09+00:00",
"completed_at": "2025-10-13T22:40:17.862589+00:00",
"task_body": "<p>Some message</p>",
"outcome": "accepted"
}
]
},
"meta": {
"timestamp": "2026-05-11T17:00:00Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Sequences
Get a Sequence
Gets a single sequence by its sequence_id. The detail response includes the sequence’s ordered list of tasks.
GET
/
v1
/
sequences
/
{sequence_id}
Get a Sequence
curl --request GET \
--url https://api.monaco.com/v1/sequences/{sequence_id}import requests
url = "https://api.monaco.com/v1/sequences/{sequence_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.monaco.com/v1/sequences/{sequence_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/sequences/{sequence_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/sequences/{sequence_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/sequences/{sequence_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.monaco.com/v1/sequences/{sequence_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": "seq_abc123",
"contact_id": "con_def456",
"name": "Enterprise Onboarding",
"description": "Multi-touch onboarding sequence for enterprise accounts",
"status": "started",
"template_id": "seqt_789ghi",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-05-10T14:22:00Z",
"tasks": [
{
"id": "tsk_abc123",
"sequence_id": "seq_abc123",
"order": 1,
"name": "Send linkedin connection request",
"type": "auto_linkedin_connection",
"status": "completed",
"scheduled_at": "2025-10-14T23:36:09+00:00",
"completed_at": "2025-10-13T22:40:17.862589+00:00",
"task_body": "<p>Some message</p>",
"outcome": "accepted"
}
]
},
"meta": {
"timestamp": "2026-05-11T17:00:00Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}⌘I