curl --request POST \
--url https://api.tamtam.ai/api/v2/new-hire-signals \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"canonical_job_title_ids": [
"<string>"
],
"company_headcounts": [
"<string>"
],
"company_hq_countries": [
"<string>"
],
"company_linkedin_ids": [
"<string>"
],
"countries": [
"<string>"
],
"industry_ids": [
"<string>"
],
"is_enabled": true,
"job_titles_excludes": [
"<string>"
],
"job_titles_includes": [
"<string>"
],
"location_geo_ids": [
"<string>"
],
"max_profiles_per_sweep": 250,
"persona_ids": [
"<string>"
],
"seniority_levels": [
"<string>"
]
}
'import requests
url = "https://api.tamtam.ai/api/v2/new-hire-signals"
payload = {
"name": "<string>",
"canonical_job_title_ids": ["<string>"],
"company_headcounts": ["<string>"],
"company_hq_countries": ["<string>"],
"company_linkedin_ids": ["<string>"],
"countries": ["<string>"],
"industry_ids": ["<string>"],
"is_enabled": True,
"job_titles_excludes": ["<string>"],
"job_titles_includes": ["<string>"],
"location_geo_ids": ["<string>"],
"max_profiles_per_sweep": 250,
"persona_ids": ["<string>"],
"seniority_levels": ["<string>"]
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
canonical_job_title_ids: ['<string>'],
company_headcounts: ['<string>'],
company_hq_countries: ['<string>'],
company_linkedin_ids: ['<string>'],
countries: ['<string>'],
industry_ids: ['<string>'],
is_enabled: true,
job_titles_excludes: ['<string>'],
job_titles_includes: ['<string>'],
location_geo_ids: ['<string>'],
max_profiles_per_sweep: 250,
persona_ids: ['<string>'],
seniority_levels: ['<string>']
})
};
fetch('https://api.tamtam.ai/api/v2/new-hire-signals', 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.tamtam.ai/api/v2/new-hire-signals",
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([
'name' => '<string>',
'canonical_job_title_ids' => [
'<string>'
],
'company_headcounts' => [
'<string>'
],
'company_hq_countries' => [
'<string>'
],
'company_linkedin_ids' => [
'<string>'
],
'countries' => [
'<string>'
],
'industry_ids' => [
'<string>'
],
'is_enabled' => true,
'job_titles_excludes' => [
'<string>'
],
'job_titles_includes' => [
'<string>'
],
'location_geo_ids' => [
'<string>'
],
'max_profiles_per_sweep' => 250,
'persona_ids' => [
'<string>'
],
'seniority_levels' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$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.tamtam.ai/api/v2/new-hire-signals"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"canonical_job_title_ids\": [\n \"<string>\"\n ],\n \"company_headcounts\": [\n \"<string>\"\n ],\n \"company_hq_countries\": [\n \"<string>\"\n ],\n \"company_linkedin_ids\": [\n \"<string>\"\n ],\n \"countries\": [\n \"<string>\"\n ],\n \"industry_ids\": [\n \"<string>\"\n ],\n \"is_enabled\": true,\n \"job_titles_excludes\": [\n \"<string>\"\n ],\n \"job_titles_includes\": [\n \"<string>\"\n ],\n \"location_geo_ids\": [\n \"<string>\"\n ],\n \"max_profiles_per_sweep\": 250,\n \"persona_ids\": [\n \"<string>\"\n ],\n \"seniority_levels\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<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.tamtam.ai/api/v2/new-hire-signals")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"canonical_job_title_ids\": [\n \"<string>\"\n ],\n \"company_headcounts\": [\n \"<string>\"\n ],\n \"company_hq_countries\": [\n \"<string>\"\n ],\n \"company_linkedin_ids\": [\n \"<string>\"\n ],\n \"countries\": [\n \"<string>\"\n ],\n \"industry_ids\": [\n \"<string>\"\n ],\n \"is_enabled\": true,\n \"job_titles_excludes\": [\n \"<string>\"\n ],\n \"job_titles_includes\": [\n \"<string>\"\n ],\n \"location_geo_ids\": [\n \"<string>\"\n ],\n \"max_profiles_per_sweep\": 250,\n \"persona_ids\": [\n \"<string>\"\n ],\n \"seniority_levels\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tamtam.ai/api/v2/new-hire-signals")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"canonical_job_title_ids\": [\n \"<string>\"\n ],\n \"company_headcounts\": [\n \"<string>\"\n ],\n \"company_hq_countries\": [\n \"<string>\"\n ],\n \"company_linkedin_ids\": [\n \"<string>\"\n ],\n \"countries\": [\n \"<string>\"\n ],\n \"industry_ids\": [\n \"<string>\"\n ],\n \"is_enabled\": true,\n \"job_titles_excludes\": [\n \"<string>\"\n ],\n \"job_titles_includes\": [\n \"<string>\"\n ],\n \"location_geo_ids\": [\n \"<string>\"\n ],\n \"max_profiles_per_sweep\": 250,\n \"persona_ids\": [\n \"<string>\"\n ],\n \"seniority_levels\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"is_enabled": true,
"kind": "<string>",
"name": "<string>",
"used_by_program_count": 123
}{
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}Create a new hire signal
A search for people who have just taken a role matching one of your personas, at any company or at named companies, collected as leads. A new hire is the moment a buyer’s priorities are most open.
The role can come from either side, and the signal needs one of them: persona_ids (one search per persona per sweep, carrying that persona’s titles, countries and seniority) or the titles stated directly in job_titles_includes. The two compose: where a persona speaks it wins; where it is silent the lane’s own axis stands, so firmographics that belong to one lane (employer size, employer HQ, industries, seniority) go here rather than into a persona everyone else reuses.
Cost when it runs: every profile read costs one credit, up to max_profiles_per_sweep per persona.
Creating a signal starts nothing and bills nothing. A signal runs only when a lead generation program picks it: Start a lead generation run sweeps it now and records a program you can put on a schedule under Settings > Signals > Lead generation. List signals reports used_by_program_count per signal; zero means it is defined and never runs. List first, so you do not create a second signal over a question you already ask: duplicates bill twice and split the leads across two names.
curl --request POST \
--url https://api.tamtam.ai/api/v2/new-hire-signals \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"canonical_job_title_ids": [
"<string>"
],
"company_headcounts": [
"<string>"
],
"company_hq_countries": [
"<string>"
],
"company_linkedin_ids": [
"<string>"
],
"countries": [
"<string>"
],
"industry_ids": [
"<string>"
],
"is_enabled": true,
"job_titles_excludes": [
"<string>"
],
"job_titles_includes": [
"<string>"
],
"location_geo_ids": [
"<string>"
],
"max_profiles_per_sweep": 250,
"persona_ids": [
"<string>"
],
"seniority_levels": [
"<string>"
]
}
'import requests
url = "https://api.tamtam.ai/api/v2/new-hire-signals"
payload = {
"name": "<string>",
"canonical_job_title_ids": ["<string>"],
"company_headcounts": ["<string>"],
"company_hq_countries": ["<string>"],
"company_linkedin_ids": ["<string>"],
"countries": ["<string>"],
"industry_ids": ["<string>"],
"is_enabled": True,
"job_titles_excludes": ["<string>"],
"job_titles_includes": ["<string>"],
"location_geo_ids": ["<string>"],
"max_profiles_per_sweep": 250,
"persona_ids": ["<string>"],
"seniority_levels": ["<string>"]
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
canonical_job_title_ids: ['<string>'],
company_headcounts: ['<string>'],
company_hq_countries: ['<string>'],
company_linkedin_ids: ['<string>'],
countries: ['<string>'],
industry_ids: ['<string>'],
is_enabled: true,
job_titles_excludes: ['<string>'],
job_titles_includes: ['<string>'],
location_geo_ids: ['<string>'],
max_profiles_per_sweep: 250,
persona_ids: ['<string>'],
seniority_levels: ['<string>']
})
};
fetch('https://api.tamtam.ai/api/v2/new-hire-signals', 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.tamtam.ai/api/v2/new-hire-signals",
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([
'name' => '<string>',
'canonical_job_title_ids' => [
'<string>'
],
'company_headcounts' => [
'<string>'
],
'company_hq_countries' => [
'<string>'
],
'company_linkedin_ids' => [
'<string>'
],
'countries' => [
'<string>'
],
'industry_ids' => [
'<string>'
],
'is_enabled' => true,
'job_titles_excludes' => [
'<string>'
],
'job_titles_includes' => [
'<string>'
],
'location_geo_ids' => [
'<string>'
],
'max_profiles_per_sweep' => 250,
'persona_ids' => [
'<string>'
],
'seniority_levels' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$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.tamtam.ai/api/v2/new-hire-signals"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"canonical_job_title_ids\": [\n \"<string>\"\n ],\n \"company_headcounts\": [\n \"<string>\"\n ],\n \"company_hq_countries\": [\n \"<string>\"\n ],\n \"company_linkedin_ids\": [\n \"<string>\"\n ],\n \"countries\": [\n \"<string>\"\n ],\n \"industry_ids\": [\n \"<string>\"\n ],\n \"is_enabled\": true,\n \"job_titles_excludes\": [\n \"<string>\"\n ],\n \"job_titles_includes\": [\n \"<string>\"\n ],\n \"location_geo_ids\": [\n \"<string>\"\n ],\n \"max_profiles_per_sweep\": 250,\n \"persona_ids\": [\n \"<string>\"\n ],\n \"seniority_levels\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<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.tamtam.ai/api/v2/new-hire-signals")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"canonical_job_title_ids\": [\n \"<string>\"\n ],\n \"company_headcounts\": [\n \"<string>\"\n ],\n \"company_hq_countries\": [\n \"<string>\"\n ],\n \"company_linkedin_ids\": [\n \"<string>\"\n ],\n \"countries\": [\n \"<string>\"\n ],\n \"industry_ids\": [\n \"<string>\"\n ],\n \"is_enabled\": true,\n \"job_titles_excludes\": [\n \"<string>\"\n ],\n \"job_titles_includes\": [\n \"<string>\"\n ],\n \"location_geo_ids\": [\n \"<string>\"\n ],\n \"max_profiles_per_sweep\": 250,\n \"persona_ids\": [\n \"<string>\"\n ],\n \"seniority_levels\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tamtam.ai/api/v2/new-hire-signals")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"canonical_job_title_ids\": [\n \"<string>\"\n ],\n \"company_headcounts\": [\n \"<string>\"\n ],\n \"company_hq_countries\": [\n \"<string>\"\n ],\n \"company_linkedin_ids\": [\n \"<string>\"\n ],\n \"countries\": [\n \"<string>\"\n ],\n \"industry_ids\": [\n \"<string>\"\n ],\n \"is_enabled\": true,\n \"job_titles_excludes\": [\n \"<string>\"\n ],\n \"job_titles_includes\": [\n \"<string>\"\n ],\n \"location_geo_ids\": [\n \"<string>\"\n ],\n \"max_profiles_per_sweep\": 250,\n \"persona_ids\": [\n \"<string>\"\n ],\n \"seniority_levels\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"is_enabled": true,
"kind": "<string>",
"name": "<string>",
"used_by_program_count": 123
}{
"detail": "Property foo is required but is missing.",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}Authorizations
Account API key passed in the Authorization header
Query Parameters
Target account UUID. Required for staff callers; ignored for customer API keys.
Body
Short label, unique in the account. Name it after the hire it watches, e.g. 'New RevOps leaders'.
1Canonical job-title UUIDs, at most 50. A union with job_titles_includes, and it also counts as naming the role.
50Size bands of the NEW employer, as LinkedIn letter codes: A (self-employed), B (1-10), C (11-50), D (51-200), E (201-500), F (501-1,000), G (1,001-5,000), H (5,001-10,000), I (10,001+).
Two-letter country codes where the NEW employer is headquartered.
Numeric LinkedIn company IDs, at most 100: watch hires INTO these companies only. Omit to watch hires anywhere.
100Two-letter country codes narrowing a persona that names no country of its own: where the PERSON is.
Industry UUIDs the new employer has to be in, at most 25.
25Defaults to true.
Job titles to drop, at most 50. Narrows the lane; never names it.
50Job titles to watch, stated directly, at most 50. Either this or persona_ids has to name the role.
50LinkedIn geo IDs where the PERSON is, at most 25: a region, city or metro a country code cannot express.
25Profiles read per persona per sweep. Defaults to 100. The cost dial: each profile read costs one credit.
1 <= x <= 500The roles a new hire has to match, at most 20. Required unless job_titles_includes or canonical_job_title_ids names the role instead.
20Seniority levels to keep: In Training, Entry Level, Senior, Strategic, Entry Level Manager, Experienced Manager, Vice President, Director, CXO, Owner / Partner. Read from the title after results come back, so it narrows who is kept, not who is paid for.