curl --request GET \
--url https://api.targetsmarter.com/api/v1/companies/lookup \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.targetsmarter.com/api/v1/companies/lookup"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.targetsmarter.com/api/v1/companies/lookup', 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.targetsmarter.com/api/v1/companies/lookup",
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://api.targetsmarter.com/api/v1/companies/lookup"
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://api.targetsmarter.com/api/v1/companies/lookup")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.targetsmarter.com/api/v1/companies/lookup")
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{
"count": 2,
"results": [
{
"id": 123,
"name": "Example Corp",
"website": "https://example.com",
"domain_root": "example.com",
"industry": [
"FinTech",
"Payments"
],
"num_employees": 250,
"location": "New York, NY",
"social": {
"linkedin": "https://www.linkedin.com/company/example/"
},
"observed_at": "2026-01-15T12:34:56Z"
},
{
"id": 456,
"name": "Acme Security",
"website": "https://acmesec.com",
"domain_root": "acmesec.com",
"industry": [
"Cybersecurity"
],
"num_employees": 90,
"location": "Austin, TX",
"social": {
"x": "https://x.com/acmesec"
},
"observed_at": "2026-01-12T09:00:00Z"
}
],
"page": 1,
"per_page": 50,
"last_page": 1,
"next_page_url": null,
"prev_page_url": null
}Search Companies
Returns companies matching at least one filter. Filters can be combined.
At least one filter is required (website, employees/employees_min/employees_max, industry, social URLs) or the API returns 422.
websiteis normalized to a domain (strips scheme, www) and matched againstcompanies.domain_rootORcompany_profile_observations.website_url(substring match).employeesis an exact match. Otherwiseemployees_min/employees_maxapply as range filters.industryis provided as an array in the docs UI. Your API can still accept a single value; users can just enter one item.- Social inputs are combined into a single list and matched exactly against observed social profile URLs for the latest run.
Results are returned with latest observed profile fields plus enriched industries and social links.
curl --request GET \
--url https://api.targetsmarter.com/api/v1/companies/lookup \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.targetsmarter.com/api/v1/companies/lookup"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.targetsmarter.com/api/v1/companies/lookup', 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.targetsmarter.com/api/v1/companies/lookup",
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://api.targetsmarter.com/api/v1/companies/lookup"
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://api.targetsmarter.com/api/v1/companies/lookup")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.targetsmarter.com/api/v1/companies/lookup")
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{
"count": 2,
"results": [
{
"id": 123,
"name": "Example Corp",
"website": "https://example.com",
"domain_root": "example.com",
"industry": [
"FinTech",
"Payments"
],
"num_employees": 250,
"location": "New York, NY",
"social": {
"linkedin": "https://www.linkedin.com/company/example/"
},
"observed_at": "2026-01-15T12:34:56Z"
},
{
"id": 456,
"name": "Acme Security",
"website": "https://acmesec.com",
"domain_root": "acmesec.com",
"industry": [
"Cybersecurity"
],
"num_employees": 90,
"location": "Austin, TX",
"social": {
"x": "https://x.com/acmesec"
},
"observed_at": "2026-01-12T09:00:00Z"
}
],
"page": 1,
"per_page": 50,
"last_page": 1,
"next_page_url": null,
"prev_page_url": null
}Authorizations
Use Authorization: Bearer <prefix>.<secret>.
Query Parameters
Page number (min 1).
x >= 1Results per page (min 1, max 200). Default is 50.
1 <= x <= 200Website or domain to match. Normalized to a host (scheme optional). Example: https://example.com or example.com.
2048Exact employee count match (integer >= 0). If provided, employees_min/max are ignored.
x >= 0Minimum employee count (integer >= 0). Used when employees not provided.
x >= 0Maximum employee count (integer >= 0). Used when employees not provided.
x >= 0Industry filter (repeatable). Enter one or more industry names. Match is substring on industry name.
Examples in querystring:
?industry=FinTech&industry=Cybersecurity(explode=true)
Note: The backend may also accept a single industry value; in the docs UI you can just enter one item.
1160Array of social profile URLs to match exactly. Example: social_urls=https://linkedin.com/company/acme&social_urls=https://x.com/acme
2048Single LinkedIn profile URL to match exactly (added to the social URLs list).
2048Single Facebook profile URL to match exactly (added to the social URLs list).
2048Single X (Twitter) profile URL to match exactly (added to the social URLs list).
2048
