curl --request GET \
--url https://api.closedloop.sh/v1/competitors/mentions \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.closedloop.sh/v1/competitors/mentions"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.closedloop.sh/v1/competitors/mentions', 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.closedloop.sh/v1/competitors/mentions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.closedloop.sh/v1/competitors/mentions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.closedloop.sh/v1/competitors/mentions")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.closedloop.sh/v1/competitors/mentions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "51617100-0000-4000-8000-000000000009",
"competitor_id": "0e11e100-0000-4000-8000-000000000001",
"mentioned_at": "2026-05-20T14:00:00Z",
"competitor_name": "Competitor X",
"competitors": [
{
"id": "0e11e100-0000-4000-8000-000000000001",
"name": "Competitor X"
}
],
"customer_id": "c0ffee00-0000-4000-8000-000000000001",
"customer_name": "Acme Co",
"quote": "We're also trialing Competitor X because their reporting is faster.",
"source": "gong_call_def456"
}
],
"pagination": {
"total": 508,
"limit": 50,
"offset": 0
}
}{
"error": "API key authentication is temporarily unavailable. Please retry shortly.",
"code": "API_KEY_AUTH_UNAVAILABLE"
}Search competitor mentions
Search verbatim competitor mentions by competitor, customer, text, or date, with source details and newest evidence returned first.
curl --request GET \
--url https://api.closedloop.sh/v1/competitors/mentions \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.closedloop.sh/v1/competitors/mentions"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.closedloop.sh/v1/competitors/mentions', 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.closedloop.sh/v1/competitors/mentions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.closedloop.sh/v1/competitors/mentions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.closedloop.sh/v1/competitors/mentions")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.closedloop.sh/v1/competitors/mentions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "51617100-0000-4000-8000-000000000009",
"competitor_id": "0e11e100-0000-4000-8000-000000000001",
"mentioned_at": "2026-05-20T14:00:00Z",
"competitor_name": "Competitor X",
"competitors": [
{
"id": "0e11e100-0000-4000-8000-000000000001",
"name": "Competitor X"
}
],
"customer_id": "c0ffee00-0000-4000-8000-000000000001",
"customer_name": "Acme Co",
"quote": "We're also trialing Competitor X because their reporting is faster.",
"source": "gong_call_def456"
}
],
"pagination": {
"total": 508,
"limit": 50,
"offset": 0
}
}{
"error": "API key authentication is temporarily unavailable. Please retry shortly.",
"code": "API_KEY_AUTH_UNAVAILABLE"
}Authorizations
Team-scoped API key created in the app (Settings → API Keys).
Sent as X-API-Key: <key> on every request. The header name apikey
is also accepted as an alias.
Query Parameters
Free-text search over titles and content.
Filter by competitor: id or name.
Filter to mentions from one customer.
Inclusive start date, as a real calendar date in YYYY-MM-DD.
Any other form is rejected with 400 VALIDATION_ERROR - including
2026-5-1, 2026/05/01, May 1, 2026, a bare 2026, a date-time, and
impossible dates such as 2026-02-30.
^\d{4}-\d{2}-\d{2}$Inclusive end date, as a real calendar date in YYYY-MM-DD.
Validated by the same rule as date_from.
^\d{4}-\d{2}-\d{2}$Page size (max 200).
1 <= x <= 200Number of records to skip.
x >= 0