Get an Opportunity
curl --request GET \
--url https://api.monaco.com/v1/opportunities/{opportunity_id}import requests
url = "https://api.monaco.com/v1/opportunities/{opportunity_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.monaco.com/v1/opportunities/{opportunity_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/opportunities/{opportunity_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/opportunities/{opportunity_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/opportunities/{opportunity_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.monaco.com/v1/opportunities/{opportunity_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": "opp_abc123",
"account_id": "acc_def456",
"name": "Acme Corp - Enterprise License",
"owner": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"stage": "negotiation",
"estimated_value": {
"currency_code": "USD",
"amount": 50000
},
"estimated_close_date": "2025-09-30",
"actual_close_date": "2025-10-15",
"summary": "Enterprise deal with strong champion. Procurement review in progress.",
"risks": [
"Budget constraints",
"Competing vendor evaluation"
],
"notes": "Follow up after Q3 board meeting",
"tags": [
"High Priority"
],
"last_activity_at": "2025-08-20T14:30:00Z",
"updated_at": "2025-08-21T14:30:00Z",
"created_at": "2025-06-01T09:00:00Z",
"custom_field_550e8400-e29b-41d4-a716-446655440001": "outbound",
"custom_field_6ba7b810-9dad-11d1-80b4-00c04fd430c8": "commit",
"custom_field_f47ac10b-58cc-4372-a567-0e02b2c3d479": "Initech",
"custom_field_explanations": {
"custom_field_6ba7b810-9dad-11d1-80b4-00c04fd430c8": {
"title": "Reasoning",
"body": "Champion is engaged and budget is confirmed.",
"confidence": "high",
"citations": [
{
"url": "https://acme.com/notes/call-42",
"title": "Call notes",
"excerpts": [
"Budget approved for Q3"
]
}
]
}
}
},
"meta": {
"timestamp": "2026-04-21T12:00:00Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Opportunities
Get an Opportunity
Gets a single opportunity by its opportunity_id. The detail response includes the AI-generated summary, identified risks, and custom fields.
GET
/
v1
/
opportunities
/
{opportunity_id}
Get an Opportunity
curl --request GET \
--url https://api.monaco.com/v1/opportunities/{opportunity_id}import requests
url = "https://api.monaco.com/v1/opportunities/{opportunity_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.monaco.com/v1/opportunities/{opportunity_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/opportunities/{opportunity_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/opportunities/{opportunity_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/opportunities/{opportunity_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.monaco.com/v1/opportunities/{opportunity_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": "opp_abc123",
"account_id": "acc_def456",
"name": "Acme Corp - Enterprise License",
"owner": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"stage": "negotiation",
"estimated_value": {
"currency_code": "USD",
"amount": 50000
},
"estimated_close_date": "2025-09-30",
"actual_close_date": "2025-10-15",
"summary": "Enterprise deal with strong champion. Procurement review in progress.",
"risks": [
"Budget constraints",
"Competing vendor evaluation"
],
"notes": "Follow up after Q3 board meeting",
"tags": [
"High Priority"
],
"last_activity_at": "2025-08-20T14:30:00Z",
"updated_at": "2025-08-21T14:30:00Z",
"created_at": "2025-06-01T09:00:00Z",
"custom_field_550e8400-e29b-41d4-a716-446655440001": "outbound",
"custom_field_6ba7b810-9dad-11d1-80b4-00c04fd430c8": "commit",
"custom_field_f47ac10b-58cc-4372-a567-0e02b2c3d479": "Initech",
"custom_field_explanations": {
"custom_field_6ba7b810-9dad-11d1-80b4-00c04fd430c8": {
"title": "Reasoning",
"body": "Champion is engaged and budget is confirmed.",
"confidence": "high",
"citations": [
{
"url": "https://acme.com/notes/call-42",
"title": "Call notes",
"excerpts": [
"Budget approved for Q3"
]
}
]
}
}
},
"meta": {
"timestamp": "2026-04-21T12:00:00Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}⌘I