Create CSV Enrichment Job
curl --request POST \
--url https://www.trysignalbase.com/api/v2/csv-enrichment \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fileName": "target-accounts.csv",
"wait": true,
"timeout": 30,
"companies": [
{
"company_name": "Mollie",
"website_url": "mollie.com",
"external_id": "acct_123"
}
]
}
'import requests
url = "https://www.trysignalbase.com/api/v2/csv-enrichment"
payload = {
"fileName": "target-accounts.csv",
"wait": True,
"timeout": 30,
"companies": [
{
"company_name": "Mollie",
"website_url": "mollie.com",
"external_id": "acct_123"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
fileName: 'target-accounts.csv',
wait: true,
timeout: 30,
companies: [{company_name: 'Mollie', website_url: 'mollie.com', external_id: 'acct_123'}]
})
};
fetch('https://www.trysignalbase.com/api/v2/csv-enrichment', 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://www.trysignalbase.com/api/v2/csv-enrichment",
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([
'fileName' => 'target-accounts.csv',
'wait' => true,
'timeout' => 30,
'companies' => [
[
'company_name' => 'Mollie',
'website_url' => 'mollie.com',
'external_id' => 'acct_123'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://www.trysignalbase.com/api/v2/csv-enrichment"
payload := strings.NewReader("{\n \"fileName\": \"target-accounts.csv\",\n \"wait\": true,\n \"timeout\": 30,\n \"companies\": [\n {\n \"company_name\": \"Mollie\",\n \"website_url\": \"mollie.com\",\n \"external_id\": \"acct_123\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://www.trysignalbase.com/api/v2/csv-enrichment")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"fileName\": \"target-accounts.csv\",\n \"wait\": true,\n \"timeout\": 30,\n \"companies\": [\n {\n \"company_name\": \"Mollie\",\n \"website_url\": \"mollie.com\",\n \"external_id\": \"acct_123\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/csv-enrichment")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"fileName\": \"target-accounts.csv\",\n \"wait\": true,\n \"timeout\": 30,\n \"companies\": [\n {\n \"company_name\": \"Mollie\",\n \"website_url\": \"mollie.com\",\n \"external_id\": \"acct_123\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"jobId": "7f4b7a34-8d65-4cc3-8ab0-3477f8a967a6",
"detectedMapping": {
"companyName": "company_name",
"websiteUrl": "website_url",
"linkedinUrl": "linkedin_url"
}
},
"meta": {
"endpoint": "csv.enrichment",
"creditsUsed": 1,
"creditsRemaining": 999
}
}Endpoints
Create CSV Enrichment Job
Submit companies for enrichment. Each company must include at least one identifier: company name, website URL/domain, or LinkedIn URL. The endpoint costs 1 credit per accepted job. Add wait=true for small lists to return completed results inline when processing finishes within timeout seconds.
POST
/
csv-enrichment
Create CSV Enrichment Job
curl --request POST \
--url https://www.trysignalbase.com/api/v2/csv-enrichment \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fileName": "target-accounts.csv",
"wait": true,
"timeout": 30,
"companies": [
{
"company_name": "Mollie",
"website_url": "mollie.com",
"external_id": "acct_123"
}
]
}
'import requests
url = "https://www.trysignalbase.com/api/v2/csv-enrichment"
payload = {
"fileName": "target-accounts.csv",
"wait": True,
"timeout": 30,
"companies": [
{
"company_name": "Mollie",
"website_url": "mollie.com",
"external_id": "acct_123"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
fileName: 'target-accounts.csv',
wait: true,
timeout: 30,
companies: [{company_name: 'Mollie', website_url: 'mollie.com', external_id: 'acct_123'}]
})
};
fetch('https://www.trysignalbase.com/api/v2/csv-enrichment', 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://www.trysignalbase.com/api/v2/csv-enrichment",
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([
'fileName' => 'target-accounts.csv',
'wait' => true,
'timeout' => 30,
'companies' => [
[
'company_name' => 'Mollie',
'website_url' => 'mollie.com',
'external_id' => 'acct_123'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://www.trysignalbase.com/api/v2/csv-enrichment"
payload := strings.NewReader("{\n \"fileName\": \"target-accounts.csv\",\n \"wait\": true,\n \"timeout\": 30,\n \"companies\": [\n {\n \"company_name\": \"Mollie\",\n \"website_url\": \"mollie.com\",\n \"external_id\": \"acct_123\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://www.trysignalbase.com/api/v2/csv-enrichment")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"fileName\": \"target-accounts.csv\",\n \"wait\": true,\n \"timeout\": 30,\n \"companies\": [\n {\n \"company_name\": \"Mollie\",\n \"website_url\": \"mollie.com\",\n \"external_id\": \"acct_123\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/csv-enrichment")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"fileName\": \"target-accounts.csv\",\n \"wait\": true,\n \"timeout\": 30,\n \"companies\": [\n {\n \"company_name\": \"Mollie\",\n \"website_url\": \"mollie.com\",\n \"external_id\": \"acct_123\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"jobId": "7f4b7a34-8d65-4cc3-8ab0-3477f8a967a6",
"detectedMapping": {
"companyName": "company_name",
"websiteUrl": "website_url",
"linkedinUrl": "linkedin_url"
}
},
"meta": {
"endpoint": "csv.enrichment",
"creditsUsed": 1,
"creditsRemaining": 999
}
}Authorizations
Signalbase API key. Include as Bearer token in the Authorization header.
Body
application/json
Companies to enrich. Maximum 1,000 companies per request.
Required array length:
1 - 1000 elementsShow child attributes
Show child attributes
Optional label stored on the enrichment job. Defaults to api-companies.json.
Maximum string length:
500Example:
"target-accounts.csv"
If true, wait up to timeout seconds and return completed results inline when available.
Maximum wait time in seconds when wait=true.
Required range:
1 <= x <= 30⌘I
