Attention
curl --request GET \
--url https://api.opennous.cloud/v2/attentionimport requests
url = "https://api.opennous.cloud/v2/attention"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.opennous.cloud/v2/attention', 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.opennous.cloud/v2/attention",
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.opennous.cloud/v2/attention"
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.opennous.cloud/v2/attention")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.opennous.cloud/v2/attention")
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_bodySearch
Attention
Workspace-wide: accounts gone quiet, key facts decayed. Ranked decisions, each with a suggested action.
GET
/
v2
/
attention
Attention
curl --request GET \
--url https://api.opennous.cloud/v2/attentionimport requests
url = "https://api.opennous.cloud/v2/attention"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.opennous.cloud/v2/attention', 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.opennous.cloud/v2/attention",
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.opennous.cloud/v2/attention"
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.opennous.cloud/v2/attention")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.opennous.cloud/v2/attention")
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_bodyThe “what should I work next?” endpoint. Returns a ranked list of accounts that have decayed past your decision thresholds — gone quiet, key facts expired, deals that haven’t moved — each with a suggested next action.
Request
curl 'https://api.opennous.cloud/v2/attention?limit=10' \
-H 'Authorization: Bearer YOUR_API_KEY'
Query params
number
default:"25"
Max items. Cap 100.
Response
{
"items": [
{
"entity_id": "a1b2c3d4-...",
"entity_name": "Arnold Schwarzenegger",
"entity_type": "person",
"what": "going_dark",
"headline": "Arnold Schwarzenegger — no activity for 35 days",
"suggested_action": "Re-engage with a follow-up or close the account out",
"score": 0.78,
"last_observed_at": "2026-04-19T..."
}
],
"meta": { "total": 5 }
}
what values
| Value | Meaning |
|---|---|
going_dark | No activity in N days; pipeline stage suggests they should be moving |
claim_stale | Key claim (title, stage, etc.) expired the freshness window |
prediction_unresolved | An open prediction has aged past its resolution horizon |
decay_threshold | Custom decay rule fired |
When to call it
- At the start of an agent’s working session — pick what to act on
- As a recurring cron that feeds a Slack channel or task queue
- In a Playground (“who has gone quiet?”) to surface the today-list
attention is the agent’s compass.