List sync runs (flat)
curl --request GET \
--url https://api.example.com/api/v2/runsimport requests
url = "https://api.example.com/api/v2/runs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v2/runs', 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/v2/runs",
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/v2/runs"
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/v2/runs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v2/runs")
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_bodySync runs (flat)
List sync runs (flat)
Cross-stream flat list of recent sync runs
GET
/
api
/
v2
/
runs
List sync runs (flat)
curl --request GET \
--url https://api.example.com/api/v2/runsimport requests
url = "https://api.example.com/api/v2/runs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v2/runs', 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/v2/runs",
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/v2/runs"
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/v2/runs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v2/runs")
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_bodyReturns a flat list of the user’s recent sync runs across every campaign. Each row carries the parent stream’s id + name (when the run’s
(account, segment) pair belongs to a stream). For per-stream history use GET /api/v2/streams//runs.
Query parameters
| Name | Type | Description |
|---|---|---|
limit | number | Default 30, max 100 |
Response
{
"runs": [
{
"id": 123,
"streamId": 42,
"streamName": "AI founders watching Yongfook",
"streamIsActive": true,
"trackedXAccountId": 7,
"xHandle": "yongfook",
"segmentId": 12,
"segmentName": "AI founders building developer tools",
"source": "cron",
"status": "succeeded",
"triggeredAt": "2026-06-02T09:00:00Z",
"completedAt": "2026-06-02T09:01:23Z",
"newFollowersCount": 50,
"candidatesPassedCount": 12,
"mediumFitCount": 4,
"enrichedCount": 8,
"errorMessage": null,
"progressLog": []
}
]
}
streamId / streamName / streamIsActive are null for sync runs whose (account, segment) pair no longer belongs to any stream (orphaned manual runs).
Auth
Bearer or session cookie.⌘I