Demo decision makers (public, no key)
curl --request GET \
--url https://api.bossradar.com/v1/demo/company/{company_id}/dmimport requests
url = "https://api.bossradar.com/v1/demo/company/{company_id}/dm"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.bossradar.com/v1/demo/company/{company_id}/dm', 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.bossradar.com/v1/demo/company/{company_id}/dm",
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.bossradar.com/v1/demo/company/{company_id}/dm"
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.bossradar.com/v1/demo/company/{company_id}/dm")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bossradar.com/v1/demo/company/{company_id}/dm")
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_body{
"company_id": 123,
"decision_maker_count": 123,
"decision_makers": [
{
"rank_in_company": 1,
"is_decision_maker": true,
"person": {
"name": "Jane Doe",
"first_name": "<string>",
"last_name": "<string>",
"headline": "<string>",
"linkedin_url": "https://www.linkedin.com/in/jane-doe",
"photo_url": "<string>",
"location": {
"text": "Glendale, California, United States",
"city": "Glendale",
"region": "California",
"country": "United States",
"country_code": "US"
},
"about": "<string>",
"connections": 123,
"followers": 123,
"member_since": "2011-07-27",
"content_language": "en",
"flags": {
"open_to_work": true,
"hiring": true,
"premium": true,
"verified": true,
"influencer": true,
"creator": true
},
"certifications": [
{
"title": "<string>",
"issued_by": "<string>"
}
],
"interests": {
"groups": [
{
"name": "<string>",
"url": "https://www.linkedin.com/groups/2124257",
"members": 137932
}
],
"newsletters": [
{
"name": "<string>",
"about": "<string>",
"cadence": "monthly"
}
]
}
},
"verdict": {
"tier": "owner",
"role": "<string>",
"function": "sales",
"belongs": "confirmed",
"why": "<string>",
"hook": "<string>"
},
"contact": {
"email": {
"address": "jane@acme.com",
"status": "valid",
"quality_score": 92,
"catch_all_domain": true,
"valid_email_server": true,
"free": true,
"source": "verified"
},
"websites": [
"<string>"
],
"bio_links": [
{
"url": "<string>",
"title": "<string>"
}
]
},
"experience": [
{
"title": "<string>",
"company": "<string>",
"company_id": 123,
"employment_type": "<string>",
"workplace_type": "<string>",
"start": "<string>",
"end": "<string>",
"duration": "<string>",
"description": "<string>"
}
],
"education": [
{
"school": "<string>",
"degree": "<string>",
"field": "<string>",
"start": "<string>",
"end": "<string>"
}
],
"signals": {
"recommendations_count": 123,
"recommendations": [
{
"by": "<string>",
"by_headline": "<string>",
"text": "<string>"
}
],
"posts_about_own_company": true,
"avg_engagement": 123,
"recent_posts": [
{
"content": "<string>",
"posted_at": "<string>",
"url": "<string>",
"is_repost": true,
"engagement": {
"likes": 123,
"comments": 123,
"shares": 123
}
}
],
"authored_articles": [
{
"title": "<string>",
"link": "<string>",
"published": "<string>"
}
],
"last_active": "2026-06-20"
},
"meta": {
"linkedin_id": "<string>",
"profile_urn": "<string>",
"has_real_photo": true,
"photo_uploaded_at": "<string>",
"photo_expires_at": "<string>"
}
}
],
"company": {
"id": 3384253,
"name": "<string>",
"linkedin_url": "<string>",
"website": "<string>",
"domain": "<string>",
"industry": "<string>",
"type": "Privately Held",
"employees_count": 123,
"linkedin_since_est": "2023-11",
"description": "<string>",
"slogan": "<string>",
"specialties": [
"<string>"
],
"location": {
"locality": "<string>",
"region": "<string>",
"country": "<string>",
"postal_code": "<string>"
},
"followers": 123,
"last_post_date": "<string>",
"content_language": "en",
"hiring_for": [
"<string>"
],
"logo_url": "<string>",
"has_logo": true,
"recent_posts": [
{
"content": "<string>",
"posted_at": "<string>",
"url": "<string>"
}
]
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}demo
Demo decision makers (public, no key)
Decision makers for a demo-eligible company — same shape as /company/{id}/dm, but public and
scoped to the rolling demo set (recently searched + 1..MAX_DM DMs). 404 for anything outside it.
GET
/
v1
/
demo
/
company
/
{company_id}
/
dm
Demo decision makers (public, no key)
curl --request GET \
--url https://api.bossradar.com/v1/demo/company/{company_id}/dmimport requests
url = "https://api.bossradar.com/v1/demo/company/{company_id}/dm"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.bossradar.com/v1/demo/company/{company_id}/dm', 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.bossradar.com/v1/demo/company/{company_id}/dm",
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.bossradar.com/v1/demo/company/{company_id}/dm"
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.bossradar.com/v1/demo/company/{company_id}/dm")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bossradar.com/v1/demo/company/{company_id}/dm")
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_body{
"company_id": 123,
"decision_maker_count": 123,
"decision_makers": [
{
"rank_in_company": 1,
"is_decision_maker": true,
"person": {
"name": "Jane Doe",
"first_name": "<string>",
"last_name": "<string>",
"headline": "<string>",
"linkedin_url": "https://www.linkedin.com/in/jane-doe",
"photo_url": "<string>",
"location": {
"text": "Glendale, California, United States",
"city": "Glendale",
"region": "California",
"country": "United States",
"country_code": "US"
},
"about": "<string>",
"connections": 123,
"followers": 123,
"member_since": "2011-07-27",
"content_language": "en",
"flags": {
"open_to_work": true,
"hiring": true,
"premium": true,
"verified": true,
"influencer": true,
"creator": true
},
"certifications": [
{
"title": "<string>",
"issued_by": "<string>"
}
],
"interests": {
"groups": [
{
"name": "<string>",
"url": "https://www.linkedin.com/groups/2124257",
"members": 137932
}
],
"newsletters": [
{
"name": "<string>",
"about": "<string>",
"cadence": "monthly"
}
]
}
},
"verdict": {
"tier": "owner",
"role": "<string>",
"function": "sales",
"belongs": "confirmed",
"why": "<string>",
"hook": "<string>"
},
"contact": {
"email": {
"address": "jane@acme.com",
"status": "valid",
"quality_score": 92,
"catch_all_domain": true,
"valid_email_server": true,
"free": true,
"source": "verified"
},
"websites": [
"<string>"
],
"bio_links": [
{
"url": "<string>",
"title": "<string>"
}
]
},
"experience": [
{
"title": "<string>",
"company": "<string>",
"company_id": 123,
"employment_type": "<string>",
"workplace_type": "<string>",
"start": "<string>",
"end": "<string>",
"duration": "<string>",
"description": "<string>"
}
],
"education": [
{
"school": "<string>",
"degree": "<string>",
"field": "<string>",
"start": "<string>",
"end": "<string>"
}
],
"signals": {
"recommendations_count": 123,
"recommendations": [
{
"by": "<string>",
"by_headline": "<string>",
"text": "<string>"
}
],
"posts_about_own_company": true,
"avg_engagement": 123,
"recent_posts": [
{
"content": "<string>",
"posted_at": "<string>",
"url": "<string>",
"is_repost": true,
"engagement": {
"likes": 123,
"comments": 123,
"shares": 123
}
}
],
"authored_articles": [
{
"title": "<string>",
"link": "<string>",
"published": "<string>"
}
],
"last_active": "2026-06-20"
},
"meta": {
"linkedin_id": "<string>",
"profile_urn": "<string>",
"has_real_photo": true,
"photo_uploaded_at": "<string>",
"photo_expires_at": "<string>"
}
}
],
"company": {
"id": 3384253,
"name": "<string>",
"linkedin_url": "<string>",
"website": "<string>",
"domain": "<string>",
"industry": "<string>",
"type": "Privately Held",
"employees_count": 123,
"linkedin_since_est": "2023-11",
"description": "<string>",
"slogan": "<string>",
"specialties": [
"<string>"
],
"location": {
"locality": "<string>",
"region": "<string>",
"country": "<string>",
"postal_code": "<string>"
},
"followers": 123,
"last_post_date": "<string>",
"content_language": "en",
"hiring_for": [
"<string>"
],
"logo_url": "<string>",
"has_logo": true,
"recent_posts": [
{
"content": "<string>",
"posted_at": "<string>",
"url": "<string>"
}
]
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Path Parameters
Response
Successful Response
Example:
3384253
Example:
5
Confirmed decision makers, ranked (rank_in_company ascending, 1 first).
Show child attributes
Show child attributes
The company these decision makers work at — one shared context for the whole response, not repeated per person.
Show child attributes
Show child attributes
⌘I