curl --request GET \
--url https://api.geoptie.com/v1/brands/{id}/visibility \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.geoptie.com/v1/brands/{id}/visibility"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.geoptie.com/v1/brands/{id}/visibility', 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.geoptie.com/v1/brands/{id}/visibility",
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.geoptie.com/v1/brands/{id}/visibility"
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://api.geoptie.com/v1/brands/{id}/visibility")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.geoptie.com/v1/brands/{id}/visibility")
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{
"data": {
"brand": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"domain": "<string>"
},
"period": {
"from": "2023-12-25",
"to": "2023-12-25"
},
"filters": {
"engines": [
"chatgpt"
],
"topic_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
},
"summary": {
"visibility_score": 123,
"share_of_voice": 123,
"detection_rate": 123,
"top3_visibility": 123,
"avg_position": 123,
"avg_sentiment": 123,
"mention_count": 123,
"citation_count": 123,
"responses_analyzed": 123,
"responses_with_brand": 123
},
"trends": [
{
"date": "2023-12-25",
"no_data": true,
"visibility_score": 123,
"share_of_voice": 123,
"detection_rate": 123,
"top3_visibility": 123,
"avg_position": 123,
"avg_sentiment": 123,
"mention_count": 123,
"citation_count": 123,
"responses_analyzed": 123,
"responses_with_brand": 123
}
],
"previous": {
"period": {},
"summary": {
"visibility_score": 123,
"share_of_voice": 123,
"detection_rate": 123,
"top3_visibility": 123,
"avg_position": 123,
"avg_sentiment": 123,
"mention_count": 123,
"citation_count": 123,
"responses_analyzed": 123,
"responses_with_brand": 123
}
},
"changes": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Brand visibility
How often and how prominently this brand appears in engine answers, day by day, with a summary for the window. Narrow it to one engine, a topic, or a single prompt.
curl --request GET \
--url https://api.geoptie.com/v1/brands/{id}/visibility \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.geoptie.com/v1/brands/{id}/visibility"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.geoptie.com/v1/brands/{id}/visibility', 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.geoptie.com/v1/brands/{id}/visibility",
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.geoptie.com/v1/brands/{id}/visibility"
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://api.geoptie.com/v1/brands/{id}/visibility")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.geoptie.com/v1/brands/{id}/visibility")
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{
"data": {
"brand": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"domain": "<string>"
},
"period": {
"from": "2023-12-25",
"to": "2023-12-25"
},
"filters": {
"engines": [
"chatgpt"
],
"topic_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
},
"summary": {
"visibility_score": 123,
"share_of_voice": 123,
"detection_rate": 123,
"top3_visibility": 123,
"avg_position": 123,
"avg_sentiment": 123,
"mention_count": 123,
"citation_count": 123,
"responses_analyzed": 123,
"responses_with_brand": 123
},
"trends": [
{
"date": "2023-12-25",
"no_data": true,
"visibility_score": 123,
"share_of_voice": 123,
"detection_rate": 123,
"top3_visibility": 123,
"avg_position": 123,
"avg_sentiment": 123,
"mention_count": 123,
"citation_count": 123,
"responses_analyzed": 123,
"responses_with_brand": 123
}
],
"previous": {
"period": {},
"summary": {
"visibility_score": 123,
"share_of_voice": 123,
"detection_rate": 123,
"top3_visibility": 123,
"avg_position": 123,
"avg_sentiment": 123,
"mention_count": 123,
"citation_count": 123,
"responses_analyzed": 123,
"responses_with_brand": 123
}
},
"changes": {}
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Authorizations
Your API key, e.g. Authorization: Bearer gp_live_....
Path Parameters
Brand id.
Query Parameters
Inclusive start date. Defaults to 30 days before to.
Exclusive end date. Defaults to tomorrow.
Repeatable. Omit for the all-engine rollup.
Stable public engine identifier. Internal model names are never exposed.
chatgpt, claude, perplexity, gemini, google_ai_overviews, google_ai_mode, copilot Repeatable. Restrict to prompts in these topics.
Restrict to a single prompt. Not repeatable, and cannot be combined with topic_id. For metrics across many prompts use GET /v1/brands/{id}/prompts?include=metrics.
Set false for the summary only.
Adds the previous equal-length period and deltas.
Response
Success
Show child attributes
Show child attributes