curl --request GET \
--url https://api.instantly.ai/api/v2/ai-agents/sales/{id}/analytics \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.instantly.ai/api/v2/ai-agents/sales/{id}/analytics"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.instantly.ai/api/v2/ai-agents/sales/{id}/analytics', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://api.instantly.ai/api/v2/ai-agents/sales/{id}/analytics")
.header("Authorization", "Bearer <token>")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.instantly.ai/api/v2/ai-agents/sales/{id}/analytics",
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.instantly.ai/api/v2/ai-agents/sales/{id}/analytics"
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))
}{
"total_email_activity_per_day": [
{
"x": "2026-09-10T12:06:52.791Z",
"y": 100
}
],
"replies_per_day": [
{
"x": "2026-09-10T12:06:52.791Z",
"y": 50
}
],
"leads_found_per_day": [
{
"x": "2026-09-10T12:06:52.791Z",
"y": 25
}
],
"opportunities_per_day": [
{
"x": "2026-09-10T12:06:52.791Z",
"y": 10
}
],
"totals": {
"total_sent": 100,
"replies": 50,
"opportunities": 10,
"opportunities_amount": 50000,
"total_email_activity": 200,
"leads_found": 500
}
}{
"statusCode": 400,
"error": "Bad Request",
"message": "body must have required property 'name'"
}{
"statusCode": 401,
"error": "Unauthorized",
"message": "Missing Authorization header"
}{
"statusCode": 402,
"error": "Payment Required",
"message": "Workspace does not have an active paid plan"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found"
}{
"statusCode": 429,
"error": "Too Many Requests",
"message": "Rate limit exceeded"
}Get AI Sales Agent analytics
Get daily analytics (leads found, emails sent, replies, opportunities, total email activity) merged across all campaigns of the AI Sales Agent. When start_date and end_date are omitted, the response covers all-time data.
Requires one of the following scopes: ai_sdr:read, ai_sdr:all, all:read, all:all
curl --request GET \
--url https://api.instantly.ai/api/v2/ai-agents/sales/{id}/analytics \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.instantly.ai/api/v2/ai-agents/sales/{id}/analytics"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.instantly.ai/api/v2/ai-agents/sales/{id}/analytics', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://api.instantly.ai/api/v2/ai-agents/sales/{id}/analytics")
.header("Authorization", "Bearer <token>")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.instantly.ai/api/v2/ai-agents/sales/{id}/analytics",
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.instantly.ai/api/v2/ai-agents/sales/{id}/analytics"
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))
}{
"total_email_activity_per_day": [
{
"x": "2026-09-10T12:06:52.791Z",
"y": 100
}
],
"replies_per_day": [
{
"x": "2026-09-10T12:06:52.791Z",
"y": 50
}
],
"leads_found_per_day": [
{
"x": "2026-09-10T12:06:52.791Z",
"y": 25
}
],
"opportunities_per_day": [
{
"x": "2026-09-10T12:06:52.791Z",
"y": 10
}
],
"totals": {
"total_sent": 100,
"replies": 50,
"opportunities": 10,
"opportunities_amount": 50000,
"total_email_activity": 200,
"leads_found": 500
}
}{
"statusCode": 400,
"error": "Bad Request",
"message": "body must have required property 'name'"
}{
"statusCode": 401,
"error": "Unauthorized",
"message": "Missing Authorization header"
}{
"statusCode": 402,
"error": "Payment Required",
"message": "Workspace does not have an active paid plan"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found"
}{
"statusCode": 429,
"error": "Too Many Requests",
"message": "Rate limit exceeded"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
AI Sales Agent ID
"01a08b36-b277-7624-9f8a-290035be2eba"
Query Parameters
Start date filter (ISO 8601). When omitted, results are not bounded by a start date (all-time data up to end_date).
"2026-09-10T12:06:52.791Z"
End date filter (ISO 8601). When omitted, results run up to the present.
"2026-09-10T12:06:52.791Z"
Response
Merged analytics data
Merged daily analytics for every campaign of the AI Sales Agent
Daily total email activity data points formatted for charts (array of {x: date, y: value})
Show child attributes
Show child attributes
Daily replies data points formatted for charts (array of {x: date, y: value})
Show child attributes
Show child attributes
Daily leads found data points formatted for charts (array of {x: date, y: value})
Show child attributes
Show child attributes
Daily opportunities data points formatted for charts (array of {x: date, y: value})
Show child attributes
Show child attributes
Totals over the selected date range
Show child attributes
Show child attributes