curl --request POST \
--url https://api.firmintent.com/v1/jobs \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"input": "<string>",
"operation": "target_people",
"callback_url": "https://your-server.com/hooks/firmintent",
"persona": "owners-founders"
}
'import requests
url = "https://api.firmintent.com/v1/jobs"
payload = {
"input": "<string>",
"operation": "target_people",
"callback_url": "https://your-server.com/hooks/firmintent",
"persona": "owners-founders"
}
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({
input: '<string>',
operation: 'target_people',
callback_url: 'https://your-server.com/hooks/firmintent',
persona: 'owners-founders'
})
};
fetch('https://api.firmintent.com/v1/jobs', 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.firmintent.com/v1/jobs",
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([
'input' => '<string>',
'operation' => 'target_people',
'callback_url' => 'https://your-server.com/hooks/firmintent',
'persona' => 'owners-founders'
]),
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.firmintent.com/v1/jobs"
payload := strings.NewReader("{\n \"input\": \"<string>\",\n \"operation\": \"target_people\",\n \"callback_url\": \"https://your-server.com/hooks/firmintent\",\n \"persona\": \"owners-founders\"\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.firmintent.com/v1/jobs")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"input\": \"<string>\",\n \"operation\": \"target_people\",\n \"callback_url\": \"https://your-server.com/hooks/firmintent\",\n \"persona\": \"owners-founders\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.firmintent.com/v1/jobs")
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 \"input\": \"<string>\",\n \"operation\": \"target_people\",\n \"callback_url\": \"https://your-server.com/hooks/firmintent\",\n \"persona\": \"owners-founders\"\n}"
response = http.request(request)
puts response.read_body{
"job_id": "<string>",
"status": "processing"
}{
"error": {
"code": "<string>",
"message": "<string>",
"balance": 123,
"limit": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"balance": 123,
"limit": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"balance": 123,
"limit": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"balance": 123,
"limit": 123
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"balance": 123,
"limit": 123
}
}Submit a company
Enqueue a persona-first company job. Returns 202 immediately with a job_id;
the work runs asynchronously. Pass callback_url to receive a webhook instead of polling.
curl --request POST \
--url https://api.firmintent.com/v1/jobs \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"input": "<string>",
"operation": "target_people",
"callback_url": "https://your-server.com/hooks/firmintent",
"persona": "owners-founders"
}
'import requests
url = "https://api.firmintent.com/v1/jobs"
payload = {
"input": "<string>",
"operation": "target_people",
"callback_url": "https://your-server.com/hooks/firmintent",
"persona": "owners-founders"
}
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({
input: '<string>',
operation: 'target_people',
callback_url: 'https://your-server.com/hooks/firmintent',
persona: 'owners-founders'
})
};
fetch('https://api.firmintent.com/v1/jobs', 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.firmintent.com/v1/jobs",
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([
'input' => '<string>',
'operation' => 'target_people',
'callback_url' => 'https://your-server.com/hooks/firmintent',
'persona' => 'owners-founders'
]),
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.firmintent.com/v1/jobs"
payload := strings.NewReader("{\n \"input\": \"<string>\",\n \"operation\": \"target_people\",\n \"callback_url\": \"https://your-server.com/hooks/firmintent\",\n \"persona\": \"owners-founders\"\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.firmintent.com/v1/jobs")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"input\": \"<string>\",\n \"operation\": \"target_people\",\n \"callback_url\": \"https://your-server.com/hooks/firmintent\",\n \"persona\": \"owners-founders\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.firmintent.com/v1/jobs")
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 \"input\": \"<string>\",\n \"operation\": \"target_people\",\n \"callback_url\": \"https://your-server.com/hooks/firmintent\",\n \"persona\": \"owners-founders\"\n}"
response = http.request(request)
puts response.read_body{
"job_id": "<string>",
"status": "processing"
}{
"error": {
"code": "<string>",
"message": "<string>",
"balance": 123,
"limit": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"balance": 123,
"limit": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"balance": 123,
"limit": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"balance": 123,
"limit": 123
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"balance": 123,
"limit": 123
}
}Authorizations
Your brk_live_ API key.
Headers
Body
A LinkedIn company URL (linkedin.com/company/<slug-or-id>) or a bare numeric company id. Bare name/domain is not accepted yet → 400 (a later resolver layer).
"linkedin.com/company/anthropic"
Job type — v1 supports only target_people.
"target_people"
Optional HTTPS webhook — POSTed with the result when the job is done. Loopback/private literal IP addresses and URLs with embedded credentials are rejected.
"https://your-server.com/hooks/firmintent"
Required existing persona slug (from GET /v1/personas). Missing returns 400 persona_required; unknown returns 400 persona_not_found.
"owners-founders"