Action Items
curl --request GET \
--url https://api.opennous.cloud/v2/action-itemsimport requests
url = "https://api.opennous.cloud/v2/action-items"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.opennous.cloud/v2/action-items', 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/action-items",
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/action-items"
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/action-items")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.opennous.cloud/v2/action-items")
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
Action Items
Commitments extracted from meetings and emails — what you owe each account, and what they owe you. Structured, queryable, grouped by account.
GET
/
v2
/
action-items
Action Items
curl --request GET \
--url https://api.opennous.cloud/v2/action-itemsimport requests
url = "https://api.opennous.cloud/v2/action-items"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.opennous.cloud/v2/action-items', 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/action-items",
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/action-items"
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/action-items")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.opennous.cloud/v2/action-items")
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 the action items captured from meeting transcripts (and emails) as structured records on each account. Defaults to the founder’s own open commitments, so you can answer “what are my action items today?” without digging through notes.
Request
curl 'https://api.opennous.cloud/v2/action-items?owner=me&status=open' \
-H 'Authorization: Bearer YOUR_API_KEY'
Query params
string
default:"me"
me — your commitments. prospect — theirs. all — both.string
default:"open"
open, done, or all.string
Scope to one account — an email or entity UUID.
string
default:"all"
today / week limit to items that carry a due date inside the window.Response
{
"items": [
{
"id": "action_item.fireflies_01KV63..._0",
"entity_id": "0580d1b1-...",
"account": "Muhammad Taimoor Ali",
"account_email": "taimoor@7xgtm.com",
"company": "7x GTM",
"title": "Share the MVP within ~2 weeks",
"owner_kind": "user",
"status": "open",
"due_at": null,
"source_type": "fireflies",
"source_id": "01KV63...",
"recorded_at": "2026-06-16T..."
}
],
"count": 1
}
owner_kind values
| Value | Meaning |
|---|---|
user | Your commitment — something you owe the account |
prospect | The prospect’s commitment — something they owe you |
When to call it
- Daily — “what are my action items today?”
- Pre-outreach — scope to an account with
focus - As a brief — pipe open commitments into a task queue
attention as open_commitment items.