curl --request GET \
--url https://api.erdo.ai/v1/activity/feed \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.erdo.ai/v1/activity/feed"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.erdo.ai/v1/activity/feed', 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.erdo.ai/v1/activity/feed",
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.erdo.ai/v1/activity/feed"
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.erdo.ai/v1/activity/feed")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.erdo.ai/v1/activity/feed")
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{
"flood_summary": "<string>",
"items": [
{
"category": "<string>",
"clustered": true,
"created_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"metadata": {},
"needs_action": true,
"severity": "<string>",
"slug": "<string>",
"status": "<string>",
"summary": "<string>",
"thread_id": "<string>",
"title": "<string>",
"type": "<string>",
"workstream_id": "<string>",
"workstream_title": "<string>"
}
],
"total": 123,
"urgent_clusters": [
{
"count": 123,
"item_ids": [
"<string>"
],
"kind": "<string>",
"summary": "<string>",
"workstream_id": "<string>",
"workstream_title": "<string>"
}
]
}{
"code": "not_found",
"details": {},
"message": "<string>"
}ListActivityFeedAPI mirrors erdo_list_activity_feed: the unified, ranked,
read-only feed (attention items, approvals, workstream events, catalog updates, urgent cause-clusters). Query params carry limit/offset/categories/ scope. Responding to an item routes through /v1/attention/:id/respond and /v1/approvals/:id/decide — this endpoint is a view only. Omit categories for the attention-first default; catalog and execution history are opt-in.
curl --request GET \
--url https://api.erdo.ai/v1/activity/feed \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.erdo.ai/v1/activity/feed"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.erdo.ai/v1/activity/feed', 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.erdo.ai/v1/activity/feed",
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.erdo.ai/v1/activity/feed"
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.erdo.ai/v1/activity/feed")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.erdo.ai/v1/activity/feed")
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{
"flood_summary": "<string>",
"items": [
{
"category": "<string>",
"clustered": true,
"created_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"metadata": {},
"needs_action": true,
"severity": "<string>",
"slug": "<string>",
"status": "<string>",
"summary": "<string>",
"thread_id": "<string>",
"title": "<string>",
"type": "<string>",
"workstream_id": "<string>",
"workstream_title": "<string>"
}
],
"total": 123,
"urgent_clusters": [
{
"count": 123,
"item_ids": [
"<string>"
],
"kind": "<string>",
"summary": "<string>",
"workstream_id": "<string>",
"workstream_title": "<string>"
}
]
}{
"code": "not_found",
"details": {},
"message": "<string>"
}Authorizations
An Erdo API key (erdo_api_...) or scoped token (erdo_token_...).
Query Parameters
Categories is a comma-separated subset of attention, approval, workstream, catalog, job, heartbeat. Empty delegates to the activity service's single product default (attention, approval, workstream); operational run and catalog history is opt-in. Attention + workstream sources are core; every row remains organization-scoped and subject to the owning service's RBAC.
Scope is following | all (default all). API tokens are org-scoped and carry no per-user follow set, so following degrades to all for a token; it is meaningful only for a user-scoped credential that follows workstreams.
Response
Success response

