List Sequences
curl --request GET \
--url https://api.amplemarket.com/sequences \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.amplemarket.com/sequences"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.amplemarket.com/sequences', 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.amplemarket.com/sequences",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.amplemarket.com/sequences"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.amplemarket.com/sequences")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.amplemarket.com/sequences")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"sequences": [
{
"id": "39f610bde8472f447988aebb82542106997cdac2",
"name": "Sample sequence",
"status": "active",
"priority": "normal",
"url": "https://localhost:3000/dashboard/sequences/39f610bde8472f447988aebb82542106997cdac2",
"tags": [],
"dynamic_fields_used": [
"first_name",
"company_name"
],
"created_by_user_id": "019f5b77-1b41-72e3-8fb2-33b6a7280ac1",
"created_by_user_email": "foo-96@email.com",
"created_at": "2026-07-13T12:32:41Z",
"updated_at": "2026-07-13T12:32:41Z"
},
{
"id": "6df6562cffacb3e314363d4bf493c45e4c24eba0",
"name": "A sequence",
"status": "active",
"priority": "normal",
"url": "https://localhost:3000/dashboard/sequences/6df6562cffacb3e314363d4bf493c45e4c24eba0",
"tags": [],
"dynamic_fields_used": [],
"created_by_user_id": "019f5b77-1b41-72e3-8fb2-33b6a7280ac1",
"created_by_user_email": "foo-96@email.com",
"created_at": "2026-07-13T12:32:40Z",
"updated_at": "2026-07-13T12:32:40Z"
}
],
"_links": {
"self": {
"href": "/sequences?page[size]=20"
}
}
}{
"_errors": [
{
"code": "unsupported_value",
"title": "Unsupported Value",
"detail": "'invalid' is not a supported status.",
"source": {
"pointer": "/status"
}
}
],
"object": "error"
}Sequences
List Sequences
List Sequences
GET
/
sequences
List Sequences
curl --request GET \
--url https://api.amplemarket.com/sequences \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.amplemarket.com/sequences"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.amplemarket.com/sequences', 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.amplemarket.com/sequences",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.amplemarket.com/sequences"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.amplemarket.com/sequences")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.amplemarket.com/sequences")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"sequences": [
{
"id": "39f610bde8472f447988aebb82542106997cdac2",
"name": "Sample sequence",
"status": "active",
"priority": "normal",
"url": "https://localhost:3000/dashboard/sequences/39f610bde8472f447988aebb82542106997cdac2",
"tags": [],
"dynamic_fields_used": [
"first_name",
"company_name"
],
"created_by_user_id": "019f5b77-1b41-72e3-8fb2-33b6a7280ac1",
"created_by_user_email": "foo-96@email.com",
"created_at": "2026-07-13T12:32:41Z",
"updated_at": "2026-07-13T12:32:41Z"
},
{
"id": "6df6562cffacb3e314363d4bf493c45e4c24eba0",
"name": "A sequence",
"status": "active",
"priority": "normal",
"url": "https://localhost:3000/dashboard/sequences/6df6562cffacb3e314363d4bf493c45e4c24eba0",
"tags": [],
"dynamic_fields_used": [],
"created_by_user_id": "019f5b77-1b41-72e3-8fb2-33b6a7280ac1",
"created_by_user_email": "foo-96@email.com",
"created_at": "2026-07-13T12:32:40Z",
"updated_at": "2026-07-13T12:32:40Z"
}
],
"_links": {
"self": {
"href": "/sequences?page[size]=20"
}
}
}{
"_errors": [
{
"code": "unsupported_value",
"title": "Unsupported Value",
"detail": "'invalid' is not a supported status.",
"source": {
"pointer": "/status"
}
}
],
"object": "error"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Page size
Page after
Page before
Filter by sequence status
Filter by sequence creator id
Filter by sequence creator email
Search by sequence name (case insensitive)
Was this page helpful?
⌘I