List Targets
curl --request GET \
--url https://www.trysignalbase.com/api/v2/monitors/{id}/targets \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.trysignalbase.com/api/v2/monitors/{id}/targets"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.trysignalbase.com/api/v2/monitors/{id}/targets', 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://www.trysignalbase.com/api/v2/monitors/{id}/targets",
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://www.trysignalbase.com/api/v2/monitors/{id}/targets"
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://www.trysignalbase.com/api/v2/monitors/{id}/targets")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/monitors/{id}/targets")
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{
"success": true,
"data": [
{
"id": "9530caa4-70c9-49a0-ae3a-dc7f3fe497c3",
"monitor_id": "29681a72-ed3d-41a8-b119-2c2942b34996",
"type": "domain",
"value": "acme.com",
"status": "resolved",
"company": {
"id": "0b9f6f0e-2f0c-4a53-9a44-6d2b8a1c7e11",
"name": "Acme",
"slug": "acme",
"domain": "acme.com",
"industry": "Software",
"country": "US"
},
"resolved_at": "2026-09-20T13:10:41.506Z",
"last_signal_type": "funding_round",
"last_signal_at": "2026-09-18T13:08:25.412Z",
"created_at": "2026-09-20T13:10:41.507Z"
},
{
"id": "f63a838c-4927-43c9-ba73-65fa46edd5c1",
"monitor_id": "29681a72-ed3d-41a8-b119-2c2942b34996",
"type": "linkedin_company",
"value": "linkedin.com/company/initech",
"status": "pending",
"company": null,
"resolved_at": null,
"last_signal_type": null,
"last_signal_at": null,
"created_at": "2026-09-20T13:10:41.507Z"
}
],
"pagination": {
"limit": 100,
"offset": 0,
"count": 2,
"total": 2
},
"meta": {
"endpoint": "monitors.targets.list",
"creditsUsed": 0
}
}{
"success": false,
"error": "signal_types must be a non-empty array of: funding_round, acquisition, job_change, hiring",
"code": "bad_request"
}{
"success": false,
"error": "Invalid API key. No key found.",
"code": "invalid_api_key"
}{
"success": false,
"error": "Subscription expired. Please upgrade your subscription: https://www.trysignalbase.com/#pricing",
"code": "subscription_expired"
}{
"success": false,
"error": "Monitor not found",
"code": "not_found"
}{
"success": false,
"error": "Too many requests. Please upgrade your plan or slow down.",
"code": "rate_limited",
"retryAfter": 60
}{
"success": false,
"error": "An unknown error occurred",
"code": "internal_error"
}Targets
List Targets
List a monitor’s targets, newest first, with each target’s resolution status, matched company, and most recent signal. Offset-paginated; pagination.total is the number of targets matching the status filter. Free (0 credits).
GET
/
monitors
/
{id}
/
targets
List Targets
curl --request GET \
--url https://www.trysignalbase.com/api/v2/monitors/{id}/targets \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.trysignalbase.com/api/v2/monitors/{id}/targets"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.trysignalbase.com/api/v2/monitors/{id}/targets', 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://www.trysignalbase.com/api/v2/monitors/{id}/targets",
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://www.trysignalbase.com/api/v2/monitors/{id}/targets"
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://www.trysignalbase.com/api/v2/monitors/{id}/targets")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/monitors/{id}/targets")
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{
"success": true,
"data": [
{
"id": "9530caa4-70c9-49a0-ae3a-dc7f3fe497c3",
"monitor_id": "29681a72-ed3d-41a8-b119-2c2942b34996",
"type": "domain",
"value": "acme.com",
"status": "resolved",
"company": {
"id": "0b9f6f0e-2f0c-4a53-9a44-6d2b8a1c7e11",
"name": "Acme",
"slug": "acme",
"domain": "acme.com",
"industry": "Software",
"country": "US"
},
"resolved_at": "2026-09-20T13:10:41.506Z",
"last_signal_type": "funding_round",
"last_signal_at": "2026-09-18T13:08:25.412Z",
"created_at": "2026-09-20T13:10:41.507Z"
},
{
"id": "f63a838c-4927-43c9-ba73-65fa46edd5c1",
"monitor_id": "29681a72-ed3d-41a8-b119-2c2942b34996",
"type": "linkedin_company",
"value": "linkedin.com/company/initech",
"status": "pending",
"company": null,
"resolved_at": null,
"last_signal_type": null,
"last_signal_at": null,
"created_at": "2026-09-20T13:10:41.507Z"
}
],
"pagination": {
"limit": 100,
"offset": 0,
"count": 2,
"total": 2
},
"meta": {
"endpoint": "monitors.targets.list",
"creditsUsed": 0
}
}{
"success": false,
"error": "signal_types must be a non-empty array of: funding_round, acquisition, job_change, hiring",
"code": "bad_request"
}{
"success": false,
"error": "Invalid API key. No key found.",
"code": "invalid_api_key"
}{
"success": false,
"error": "Subscription expired. Please upgrade your subscription: https://www.trysignalbase.com/#pricing",
"code": "subscription_expired"
}{
"success": false,
"error": "Monitor not found",
"code": "not_found"
}{
"success": false,
"error": "Too many requests. Please upgrade your plan or slow down.",
"code": "rate_limited",
"retryAfter": 60
}{
"success": false,
"error": "An unknown error occurred",
"code": "internal_error"
}Authorizations
Signalbase API key. Include as a Bearer token in the Authorization header.
Path Parameters
The monitor ID.
Query Parameters
Only return targets in this state. resolved = matched to a company, signals are flowing. pending = not matched yet; being researched automatically. resolved = matched to a company in the Signalbase database; its signals are delivered. pending = not matched yet; it is researched automatically and re-checked nightly, and delivers nothing until it resolves.
Available options:
resolved, pending Page size.
Required range:
1 <= x <= 200Number of targets to skip.
Required range:
x >= 0