Get Sales Intel Stakeholders
curl --request GET \
--url https://api.example.com/deals/{deal_id}/sales-intel/stakeholders \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/deals/{deal_id}/sales-intel/stakeholders"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/deals/{deal_id}/sales-intel/stakeholders', 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/deals/{deal_id}/sales-intel/stakeholders",
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.example.com/deals/{deal_id}/sales-intel/stakeholders"
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.example.com/deals/{deal_id}/sales-intel/stakeholders")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/deals/{deal_id}/sales-intel/stakeholders")
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{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Deals
Get Stakeholder Intel
GET
/
deals
/
{deal_id}
/
sales-intel
/
stakeholders
Get Sales Intel Stakeholders
curl --request GET \
--url https://api.example.com/deals/{deal_id}/sales-intel/stakeholders \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/deals/{deal_id}/sales-intel/stakeholders"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/deals/{deal_id}/sales-intel/stakeholders', 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/deals/{deal_id}/sales-intel/stakeholders",
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.example.com/deals/{deal_id}/sales-intel/stakeholders"
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.example.com/deals/{deal_id}/sales-intel/stakeholders")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/deals/{deal_id}/sales-intel/stakeholders")
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{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Gated by the
ai.sales_intel_stakeholders config feature flag — a 403 names the flag when disabled.
Auth
Requires a CRM read scope and an active organization on the token. Any ofcontacts:read, deals:read, companies:read, or activities:read qualifies, as does any *:manage scope — manage implies read.
Response
| Field | Type | Description |
|---|---|---|
snapshot | object | null | Buying-committee analysis — see shape below. null if never generated. |
snapshot_generated_at | string | null | |
snapshot_source | string | null | e.g. sales_intel_stub_v1. |
profiles | array | One per linked contact: {id, contact_id, profile, generated_at, source}. |
snapshot shape (buildStakeholderSnapshot, deterministic — title/role keyword scoring against six buying-committee archetypes: executive sponsor, economic buyer, technical evaluator, champion, gatekeeper, influencer):
{schema_version, buyingCommittee: {coverage_score, identified_roles, coverage_summary, slots: [{id, label, status, aggregate_signal, contacts_covering, if_missing}], gaps, possibly_missing_personas}, championAnalysis: {strength, risks, recommendations}, powerDynamics: {summary, formal_vs_real_authority, hidden_influencers_note, champion_count_flagged_in_crm, per_contact_primary_role}, nextBestStakeholder: {contact_id, reason} | null, engagementRecommendations, dealRisks, methodology}
profile shape (per contact): {contact_id, power_structure_role, inferred_committee_archetypes: {primary, secondary_signals, confidence}, psychological_profile, communication_style, champion_blocker_status, influence_score, decision_authority, engagement_strategy, crm_vs_inference_note, key_quotes, relationships, relationships_note, stub}.