curl --request GET \
--url https://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents \
--header 'Authorization: Bearer <token>'import requests
url = "https://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents', 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://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents",
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://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents"
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://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents")
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{
"availability": "connected_with_data",
"startDate": "2026-08-07",
"endDate": "2026-08-20",
"domains": [
"adidas.com",
"blog.adidas.com"
],
"items": [
{
"agent": "GPTBot",
"engine": "chatgpt",
"category": "AI Training / Data Scraper",
"visits": 6104
},
{
"agent": "OAI-SearchBot",
"engine": "chatgpt",
"category": "Search Index",
"visits": 2201
},
{
"agent": "Claude-User",
"engine": "claude",
"category": "On-Demand AI Fetcher",
"visits": 1877
}
],
"paging": {
"limit": 25,
"offset": 0,
"totalCount": 17
}
}{
"message": "Validation failed",
"target": "query",
"errors": [
{
"path": "country",
"message": "Required",
"code": "invalid_type"
}
]
}{
"message": "Report not found"
}{
"message": "Report not found"
}{
"message": "Report not found"
}List AI agents that visited a brand report
Per-agent breakdown of AI crawler traffic, busiest agent first. category says what the agent is doing — fetching a page for a user, building a search index, or collecting training data — which is usually more actionable than the engine alone.
curl --request GET \
--url https://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents \
--header 'Authorization: Bearer <token>'import requests
url = "https://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents', 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://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents",
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://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents"
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://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data.otterly.ai/v1/reports/brand/{reportId}/agent-analytics/agents")
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{
"availability": "connected_with_data",
"startDate": "2026-08-07",
"endDate": "2026-08-20",
"domains": [
"adidas.com",
"blog.adidas.com"
],
"items": [
{
"agent": "GPTBot",
"engine": "chatgpt",
"category": "AI Training / Data Scraper",
"visits": 6104
},
{
"agent": "OAI-SearchBot",
"engine": "chatgpt",
"category": "Search Index",
"visits": 2201
},
{
"agent": "Claude-User",
"engine": "claude",
"category": "On-Demand AI Fetcher",
"visits": 1877
}
],
"paging": {
"limit": 25,
"offset": 0,
"totalCount": 17
}
}{
"message": "Validation failed",
"target": "query",
"errors": [
{
"path": "country",
"message": "Required",
"code": "invalid_type"
}
]
}{
"message": "Report not found"
}{
"message": "Report not found"
}{
"message": "Report not found"
}Authorizations
Provide your API key as a Bearer token: Authorization: Bearer YOUR_API_KEY.
Path Parameters
Brand report identifier.
1"01HX7K2YV9D3M8N0G6Q5R4S3T2"
Query Parameters
Optional. Start of the window (inclusive), YYYY-MM-DD. Omit it to get the 13 days before endDate; omit both dates for the last 14 days (UTC), matching the dashboard.
"2026-08-07"
Optional. End of the window (inclusive), YYYY-MM-DD. Defaults to today (UTC).
"2026-08-20"
Optional. Restrict results to a single engine. Omit for all engines. Pass other to match every AI crawler outside the named engines.
chatgpt, claude, copilot, perplexity, google, other "chatgpt"
Optional. Case-insensitive substring match on the agent name, up to 200 characters. Matched literally — % and _ are not wildcards.
200Optional. Zero-based offset for pagination; must be a multiple of limit. Defaults to 0.
Optional. Maximum number of items to return, up to 100. Defaults to 25.
Response
A page of agents that visited the brand report.
Whether these numbers can be trusted. not_connected means no logs connector is active for this report — metrics are null, NOT zero, because nothing is being measured. connected_no_data means a connector is active but matched no visits in this window, so the zeros are real. connected_with_data means the payload is populated.
not_connected, connected_no_data, connected_with_data "connected_with_data"
Start of the resolved window (inclusive), YYYY-MM-DD.
End of the resolved window (inclusive), YYYY-MM-DD.
The report's own domains the query spanned — its main domain plus its domain variations. Normalized (lowercased, www. and port stripped).
Show child attributes
Show child attributes
Show child attributes
Show child attributes
{
"limit": 25,
"offset": 0,
"totalCount": 137
}