Get an Account
curl --request GET \
--url https://api.monaco.com/v1/accounts/{account_id}import requests
url = "https://api.monaco.com/v1/accounts/{account_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.monaco.com/v1/accounts/{account_id}', 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.monaco.com/v1/accounts/{account_id}",
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.monaco.com/v1/accounts/{account_id}"
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.monaco.com/v1/accounts/{account_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.monaco.com/v1/accounts/{account_id}")
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{
"data": {
"id": "acc_abc123",
"name": "Acme Corp",
"status": "active",
"owner": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"notes": "Key enterprise prospect",
"company": {
"domain": "acme.com",
"linkedin_url": "https://linkedin.com/company/acme",
"description": "Enterprise software company specializing in AI-driven sales tools",
"employee_count": 250,
"founded_year": 2019,
"industries": [
"Software",
"Artificial Intelligence"
],
"total_funding_usd": 50000000,
"last_funding_date": "2024-03-15"
},
"scoring": {
"tier": "A",
"heat_score": "Hot"
},
"heat_score_explanation": {
"explanations": [
{
"signal_type": "web_visit",
"signal_point": "Visited pricing page 3 times in the last 7 days"
}
],
"firmographic": []
},
"tags": [
"Enterprise",
"High Priority"
],
"created_at": "2025-06-15T10:30:00Z",
"updated_at": "2025-06-16T10:30:00Z",
"custom_field_7a1c9e2b-3f4d-4a8e-9b1c-2d3e4f5a6b7c": "high",
"custom_field_8b2d1f3c-4e5a-4b9f-ac2d-3e4f5a6b7c8d": "2026-09-30",
"custom_field_9c3e2a4d-5f6b-4cad-bd3e-4f5a6b7c8d9e": 125000,
"custom_field_explanations": {
"custom_field_7a1c9e2b-3f4d-4a8e-9b1c-2d3e4f5a6b7c": {
"title": "Reasoning",
"body": "Matches ICP on employee count and industry.",
"confidence": "high"
}
}
},
"meta": {
"timestamp": "2026-04-21T12:00:00Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Accounts
Get an Account
Gets a single account by its account_id. The detail response includes enriched company information, scoring, and custom fields.
GET
/
v1
/
accounts
/
{account_id}
Get an Account
curl --request GET \
--url https://api.monaco.com/v1/accounts/{account_id}import requests
url = "https://api.monaco.com/v1/accounts/{account_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.monaco.com/v1/accounts/{account_id}', 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.monaco.com/v1/accounts/{account_id}",
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.monaco.com/v1/accounts/{account_id}"
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.monaco.com/v1/accounts/{account_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.monaco.com/v1/accounts/{account_id}")
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{
"data": {
"id": "acc_abc123",
"name": "Acme Corp",
"status": "active",
"owner": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"notes": "Key enterprise prospect",
"company": {
"domain": "acme.com",
"linkedin_url": "https://linkedin.com/company/acme",
"description": "Enterprise software company specializing in AI-driven sales tools",
"employee_count": 250,
"founded_year": 2019,
"industries": [
"Software",
"Artificial Intelligence"
],
"total_funding_usd": 50000000,
"last_funding_date": "2024-03-15"
},
"scoring": {
"tier": "A",
"heat_score": "Hot"
},
"heat_score_explanation": {
"explanations": [
{
"signal_type": "web_visit",
"signal_point": "Visited pricing page 3 times in the last 7 days"
}
],
"firmographic": []
},
"tags": [
"Enterprise",
"High Priority"
],
"created_at": "2025-06-15T10:30:00Z",
"updated_at": "2025-06-16T10:30:00Z",
"custom_field_7a1c9e2b-3f4d-4a8e-9b1c-2d3e4f5a6b7c": "high",
"custom_field_8b2d1f3c-4e5a-4b9f-ac2d-3e4f5a6b7c8d": "2026-09-30",
"custom_field_9c3e2a4d-5f6b-4cad-bd3e-4f5a6b7c8d9e": 125000,
"custom_field_explanations": {
"custom_field_7a1c9e2b-3f4d-4a8e-9b1c-2d3e4f5a6b7c": {
"title": "Reasoning",
"body": "Matches ICP on employee count and industry.",
"confidence": "high"
}
}
},
"meta": {
"timestamp": "2026-04-21T12:00:00Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}⌘I