Submit an async bulk radar request
curl --request POST \
--url https://api.tamradar.com/v1/radars/bulk \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"webhook_url": "https://your-domain.com/webhooks/tamradar",
"radars": [
{
"domain": "stripe.com",
"radar_type": "company_job_openings",
"departments": [
"Engineering"
],
"custom_fields": {
"crm_account_id": "acc_001"
}
},
{
"domain": "stripe.com",
"radar_type": "contact_job_changes",
"profile_url": "https://www.linkedin.com/in/janedoe",
"custom_fields": {
"contact_id": "con_001"
}
},
{
"radar_type": "industry_mentions",
"keyword": "zero trust security",
"countries": [
"US"
]
}
]
}
'import requests
url = "https://api.tamradar.com/v1/radars/bulk"
payload = {
"webhook_url": "https://your-domain.com/webhooks/tamradar",
"radars": [
{
"domain": "stripe.com",
"radar_type": "company_job_openings",
"departments": ["Engineering"],
"custom_fields": { "crm_account_id": "acc_001" }
},
{
"domain": "stripe.com",
"radar_type": "contact_job_changes",
"profile_url": "https://www.linkedin.com/in/janedoe",
"custom_fields": { "contact_id": "con_001" }
},
{
"radar_type": "industry_mentions",
"keyword": "zero trust security",
"countries": ["US"]
}
]
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
webhook_url: 'https://your-domain.com/webhooks/tamradar',
radars: [
{
domain: 'stripe.com',
radar_type: 'company_job_openings',
departments: ['Engineering'],
custom_fields: {crm_account_id: 'acc_001'}
},
{
domain: 'stripe.com',
radar_type: 'contact_job_changes',
profile_url: 'https://www.linkedin.com/in/janedoe',
custom_fields: {contact_id: 'con_001'}
},
{
radar_type: 'industry_mentions',
keyword: 'zero trust security',
countries: ['US']
}
]
})
};
fetch('https://api.tamradar.com/v1/radars/bulk', 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.tamradar.com/v1/radars/bulk",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'webhook_url' => 'https://your-domain.com/webhooks/tamradar',
'radars' => [
[
'domain' => 'stripe.com',
'radar_type' => 'company_job_openings',
'departments' => [
'Engineering'
],
'custom_fields' => [
'crm_account_id' => 'acc_001'
]
],
[
'domain' => 'stripe.com',
'radar_type' => 'contact_job_changes',
'profile_url' => 'https://www.linkedin.com/in/janedoe',
'custom_fields' => [
'contact_id' => 'con_001'
]
],
[
'radar_type' => 'industry_mentions',
'keyword' => 'zero trust security',
'countries' => [
'US'
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.tamradar.com/v1/radars/bulk"
payload := strings.NewReader("{\n \"webhook_url\": \"https://your-domain.com/webhooks/tamradar\",\n \"radars\": [\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"company_job_openings\",\n \"departments\": [\n \"Engineering\"\n ],\n \"custom_fields\": {\n \"crm_account_id\": \"acc_001\"\n }\n },\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"contact_job_changes\",\n \"profile_url\": \"https://www.linkedin.com/in/janedoe\",\n \"custom_fields\": {\n \"contact_id\": \"con_001\"\n }\n },\n {\n \"radar_type\": \"industry_mentions\",\n \"keyword\": \"zero trust security\",\n \"countries\": [\n \"US\"\n ]\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.tamradar.com/v1/radars/bulk")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"webhook_url\": \"https://your-domain.com/webhooks/tamradar\",\n \"radars\": [\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"company_job_openings\",\n \"departments\": [\n \"Engineering\"\n ],\n \"custom_fields\": {\n \"crm_account_id\": \"acc_001\"\n }\n },\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"contact_job_changes\",\n \"profile_url\": \"https://www.linkedin.com/in/janedoe\",\n \"custom_fields\": {\n \"contact_id\": \"con_001\"\n }\n },\n {\n \"radar_type\": \"industry_mentions\",\n \"keyword\": \"zero trust security\",\n \"countries\": [\n \"US\"\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tamradar.com/v1/radars/bulk")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"webhook_url\": \"https://your-domain.com/webhooks/tamradar\",\n \"radars\": [\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"company_job_openings\",\n \"departments\": [\n \"Engineering\"\n ],\n \"custom_fields\": {\n \"crm_account_id\": \"acc_001\"\n }\n },\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"contact_job_changes\",\n \"profile_url\": \"https://www.linkedin.com/in/janedoe\",\n \"custom_fields\": {\n \"contact_id\": \"con_001\"\n }\n },\n {\n \"radar_type\": \"industry_mentions\",\n \"keyword\": \"zero trust security\",\n \"countries\": [\n \"US\"\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": "success",
"code": 202,
"message": "Bulk submission accepted — radars are being created asynchronously",
"bulk_id": "5f9da22e-4778-427c-b7e4-dab2a8d9d709",
"summary": {
"total": 3
},
"timestamp": "2026-05-24T18:22:01.000Z"
}{
"status": "error",
"code": 400,
"message": "Invalid request body",
"errors": [
{
"field": "webhook_url",
"reason": "webhook_url is required for async bulk requests"
}
],
"timestamp": "2026-05-24T18:22:01.000Z"
}{
"status": "error",
"message": "<string>",
"errors": [
{
"field": "<string>",
"reason": "<string>"
}
],
"timestamp": "2023-11-07T05:31:56Z",
"error_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"status": "error",
"code": 429,
"message": "Rate limit exceeded — wait and retry.",
"errors": [
{
"field": "rate_limit",
"reason": "minute"
}
],
"timestamp": "2026-05-24T18:22:01.000Z"
}{
"status": "error",
"message": "<string>",
"errors": [
{
"field": "<string>",
"reason": "<string>"
}
],
"timestamp": "2023-11-07T05:31:56Z",
"error_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Bulk
Bulk Create Radars
Queue a bulk submission for asynchronous radar creation.
POST
/
v1
/
radars
/
bulk
Submit an async bulk radar request
curl --request POST \
--url https://api.tamradar.com/v1/radars/bulk \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"webhook_url": "https://your-domain.com/webhooks/tamradar",
"radars": [
{
"domain": "stripe.com",
"radar_type": "company_job_openings",
"departments": [
"Engineering"
],
"custom_fields": {
"crm_account_id": "acc_001"
}
},
{
"domain": "stripe.com",
"radar_type": "contact_job_changes",
"profile_url": "https://www.linkedin.com/in/janedoe",
"custom_fields": {
"contact_id": "con_001"
}
},
{
"radar_type": "industry_mentions",
"keyword": "zero trust security",
"countries": [
"US"
]
}
]
}
'import requests
url = "https://api.tamradar.com/v1/radars/bulk"
payload = {
"webhook_url": "https://your-domain.com/webhooks/tamradar",
"radars": [
{
"domain": "stripe.com",
"radar_type": "company_job_openings",
"departments": ["Engineering"],
"custom_fields": { "crm_account_id": "acc_001" }
},
{
"domain": "stripe.com",
"radar_type": "contact_job_changes",
"profile_url": "https://www.linkedin.com/in/janedoe",
"custom_fields": { "contact_id": "con_001" }
},
{
"radar_type": "industry_mentions",
"keyword": "zero trust security",
"countries": ["US"]
}
]
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
webhook_url: 'https://your-domain.com/webhooks/tamradar',
radars: [
{
domain: 'stripe.com',
radar_type: 'company_job_openings',
departments: ['Engineering'],
custom_fields: {crm_account_id: 'acc_001'}
},
{
domain: 'stripe.com',
radar_type: 'contact_job_changes',
profile_url: 'https://www.linkedin.com/in/janedoe',
custom_fields: {contact_id: 'con_001'}
},
{
radar_type: 'industry_mentions',
keyword: 'zero trust security',
countries: ['US']
}
]
})
};
fetch('https://api.tamradar.com/v1/radars/bulk', 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.tamradar.com/v1/radars/bulk",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'webhook_url' => 'https://your-domain.com/webhooks/tamradar',
'radars' => [
[
'domain' => 'stripe.com',
'radar_type' => 'company_job_openings',
'departments' => [
'Engineering'
],
'custom_fields' => [
'crm_account_id' => 'acc_001'
]
],
[
'domain' => 'stripe.com',
'radar_type' => 'contact_job_changes',
'profile_url' => 'https://www.linkedin.com/in/janedoe',
'custom_fields' => [
'contact_id' => 'con_001'
]
],
[
'radar_type' => 'industry_mentions',
'keyword' => 'zero trust security',
'countries' => [
'US'
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.tamradar.com/v1/radars/bulk"
payload := strings.NewReader("{\n \"webhook_url\": \"https://your-domain.com/webhooks/tamradar\",\n \"radars\": [\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"company_job_openings\",\n \"departments\": [\n \"Engineering\"\n ],\n \"custom_fields\": {\n \"crm_account_id\": \"acc_001\"\n }\n },\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"contact_job_changes\",\n \"profile_url\": \"https://www.linkedin.com/in/janedoe\",\n \"custom_fields\": {\n \"contact_id\": \"con_001\"\n }\n },\n {\n \"radar_type\": \"industry_mentions\",\n \"keyword\": \"zero trust security\",\n \"countries\": [\n \"US\"\n ]\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.tamradar.com/v1/radars/bulk")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"webhook_url\": \"https://your-domain.com/webhooks/tamradar\",\n \"radars\": [\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"company_job_openings\",\n \"departments\": [\n \"Engineering\"\n ],\n \"custom_fields\": {\n \"crm_account_id\": \"acc_001\"\n }\n },\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"contact_job_changes\",\n \"profile_url\": \"https://www.linkedin.com/in/janedoe\",\n \"custom_fields\": {\n \"contact_id\": \"con_001\"\n }\n },\n {\n \"radar_type\": \"industry_mentions\",\n \"keyword\": \"zero trust security\",\n \"countries\": [\n \"US\"\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tamradar.com/v1/radars/bulk")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"webhook_url\": \"https://your-domain.com/webhooks/tamradar\",\n \"radars\": [\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"company_job_openings\",\n \"departments\": [\n \"Engineering\"\n ],\n \"custom_fields\": {\n \"crm_account_id\": \"acc_001\"\n }\n },\n {\n \"domain\": \"stripe.com\",\n \"radar_type\": \"contact_job_changes\",\n \"profile_url\": \"https://www.linkedin.com/in/janedoe\",\n \"custom_fields\": {\n \"contact_id\": \"con_001\"\n }\n },\n {\n \"radar_type\": \"industry_mentions\",\n \"keyword\": \"zero trust security\",\n \"countries\": [\n \"US\"\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": "success",
"code": 202,
"message": "Bulk submission accepted — radars are being created asynchronously",
"bulk_id": "5f9da22e-4778-427c-b7e4-dab2a8d9d709",
"summary": {
"total": 3
},
"timestamp": "2026-05-24T18:22:01.000Z"
}{
"status": "error",
"code": 400,
"message": "Invalid request body",
"errors": [
{
"field": "webhook_url",
"reason": "webhook_url is required for async bulk requests"
}
],
"timestamp": "2026-05-24T18:22:01.000Z"
}{
"status": "error",
"message": "<string>",
"errors": [
{
"field": "<string>",
"reason": "<string>"
}
],
"timestamp": "2023-11-07T05:31:56Z",
"error_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"status": "error",
"code": 429,
"message": "Rate limit exceeded — wait and retry.",
"errors": [
{
"field": "rate_limit",
"reason": "minute"
}
],
"timestamp": "2026-05-24T18:22:01.000Z"
}{
"status": "error",
"message": "<string>",
"errors": [
{
"field": "<string>",
"reason": "<string>"
}
],
"timestamp": "2023-11-07T05:31:56Z",
"error_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}The
bulk_completed webhook carries the full per-item result array. At 1,000 items with rich custom_fields or filter data, the payload can approach 1–2 MB — ensure your receiver can handle it. Alternatively, use GET /v1/radars/bulk/{bulk_id} to fetch results on demand.Authorizations
Body
application/json
Webhook endpoint that receives async item results and the final bulk_completed event.
Maximum string length:
2048Example:
"https://your-domain.com/webhooks/tamradar"
Array of radar payloads. Each item uses the same body structure as single radar creation (POST /v1/radars): include radar_type plus the matching fields for that radar (for example domain/profile_url/keyword, filters, custom_fields). Item-level validation runs asynchronously after the request is accepted.
Required array length:
1 - 1000 elementsShow child attributes
Show child attributes
⌘I