curl --request POST \
--url https://api.tamtam.ai/api/v2/companies/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"country": "FR",
"domain": "tamtam.ai",
"linkedin_id": "104924588",
"linkedin_url": "https://www.linkedin.com/company/tamtam-ai",
"name": "TAMTAM"
}
'import requests
url = "https://api.tamtam.ai/api/v2/companies/search"
payload = {
"country": "FR",
"domain": "tamtam.ai",
"linkedin_id": "104924588",
"linkedin_url": "https://www.linkedin.com/company/tamtam-ai",
"name": "TAMTAM"
}
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({
country: 'FR',
domain: 'tamtam.ai',
linkedin_id: '104924588',
linkedin_url: 'https://www.linkedin.com/company/tamtam-ai',
name: 'TAMTAM'
})
};
fetch('https://api.tamtam.ai/api/v2/companies/search', 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/companies/search",
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([
'country' => 'FR',
'domain' => 'tamtam.ai',
'linkedin_id' => '104924588',
'linkedin_url' => 'https://www.linkedin.com/company/tamtam-ai',
'name' => 'TAMTAM'
]),
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/companies/search"
payload := strings.NewReader("{\n \"country\": \"FR\",\n \"domain\": \"tamtam.ai\",\n \"linkedin_id\": \"104924588\",\n \"linkedin_url\": \"https://www.linkedin.com/company/tamtam-ai\",\n \"name\": \"TAMTAM\"\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/companies/search")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"country\": \"FR\",\n \"domain\": \"tamtam.ai\",\n \"linkedin_id\": \"104924588\",\n \"linkedin_url\": \"https://www.linkedin.com/company/tamtam-ai\",\n \"name\": \"TAMTAM\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tamtam.ai/api/v2/companies/search")
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 \"country\": \"FR\",\n \"domain\": \"tamtam.ai\",\n \"linkedin_id\": \"104924588\",\n \"linkedin_url\": \"https://www.linkedin.com/company/tamtam-ai\",\n \"name\": \"TAMTAM\"\n}"
response = http.request(request)
puts response.read_body{
"results": [
{
"description": "AI Agents boosting every step of your Sales Cycle",
"domain": "tamtam.ai",
"hq_country": "FR",
"linkedin_id": "104924588",
"linkedin_url": "https://www.linkedin.com/company/tamtam-ai",
"name": "TAMTAM"
}
]
}{
"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"
}Search for a company
Search for a company by name, domain, LinkedIn URL, or LinkedIn ID. Returns up to 5 candidate matches ranked by relevance.
At least one of name, domain, linkedin_url, or linkedin_id must be provided. The optional country field (2-letter code) helps disambiguate results when multiple companies match.
Results are ordered by relevance, with the best match first.
Providing multiple fields (e.g. name + domain) increases the accuracy of the match.
curl --request POST \
--url https://api.tamtam.ai/api/v2/companies/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"country": "FR",
"domain": "tamtam.ai",
"linkedin_id": "104924588",
"linkedin_url": "https://www.linkedin.com/company/tamtam-ai",
"name": "TAMTAM"
}
'import requests
url = "https://api.tamtam.ai/api/v2/companies/search"
payload = {
"country": "FR",
"domain": "tamtam.ai",
"linkedin_id": "104924588",
"linkedin_url": "https://www.linkedin.com/company/tamtam-ai",
"name": "TAMTAM"
}
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({
country: 'FR',
domain: 'tamtam.ai',
linkedin_id: '104924588',
linkedin_url: 'https://www.linkedin.com/company/tamtam-ai',
name: 'TAMTAM'
})
};
fetch('https://api.tamtam.ai/api/v2/companies/search', 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/companies/search",
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([
'country' => 'FR',
'domain' => 'tamtam.ai',
'linkedin_id' => '104924588',
'linkedin_url' => 'https://www.linkedin.com/company/tamtam-ai',
'name' => 'TAMTAM'
]),
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/companies/search"
payload := strings.NewReader("{\n \"country\": \"FR\",\n \"domain\": \"tamtam.ai\",\n \"linkedin_id\": \"104924588\",\n \"linkedin_url\": \"https://www.linkedin.com/company/tamtam-ai\",\n \"name\": \"TAMTAM\"\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/companies/search")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"country\": \"FR\",\n \"domain\": \"tamtam.ai\",\n \"linkedin_id\": \"104924588\",\n \"linkedin_url\": \"https://www.linkedin.com/company/tamtam-ai\",\n \"name\": \"TAMTAM\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tamtam.ai/api/v2/companies/search")
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 \"country\": \"FR\",\n \"domain\": \"tamtam.ai\",\n \"linkedin_id\": \"104924588\",\n \"linkedin_url\": \"https://www.linkedin.com/company/tamtam-ai\",\n \"name\": \"TAMTAM\"\n}"
response = http.request(request)
puts response.read_body{
"results": [
{
"description": "AI Agents boosting every step of your Sales Cycle",
"domain": "tamtam.ai",
"hq_country": "FR",
"linkedin_id": "104924588",
"linkedin_url": "https://www.linkedin.com/company/tamtam-ai",
"name": "TAMTAM"
}
]
}{
"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
Body
2-letter country code (e.g. FR, US) to help disambiguate results
"FR"
Company domain (e.g. tamtam.ai)
"tamtam.ai"
LinkedIn numeric company ID
"104924588"
LinkedIn company URL (e.g. https://www.linkedin.com/company/tamtam-ai)
"https://www.linkedin.com/company/tamtam-ai"
Company name
"TAMTAM"
Response
OK
List of candidate companies ranked by relevance
Show child attributes
Show child attributes