Get CSV Enrichment Job
curl --request GET \
--url https://www.trysignalbase.com/api/v2/csv-enrichment/{jobId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.trysignalbase.com/api/v2/csv-enrichment/{jobId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.trysignalbase.com/api/v2/csv-enrichment/{jobId}', 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/{jobId}",
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://www.trysignalbase.com/api/v2/csv-enrichment/{jobId}"
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://www.trysignalbase.com/api/v2/csv-enrichment/{jobId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/csv-enrichment/{jobId}")
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{
"success": true,
"data": {
"jobId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"progress": {
"processed": 1,
"total": 1
},
"submittedAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"summary": {
"totalInputs": 1,
"matched": 1,
"unmatched": 1,
"withFundingSignals": 1,
"withAcquisitionSignals": 1,
"withHiringSignals": 1,
"withJobChangeSignals": 1
},
"results": [
{
"input": {},
"matched": true,
"companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"company": {
"name": "<string>",
"domain": "<string>",
"industry": "<string>",
"country": "<string>",
"employeeCount": 123
},
"signals": {
"funding": [
{}
],
"acquisition": [
{}
],
"hiring": [
{}
],
"job_change": [
{}
],
"investors": [
{}
]
}
}
],
"nextCursor": "<string>",
"error": {
"code": "match_engine_unavailable",
"message": "<string>"
}
},
"meta": {
"endpoint": "<string>",
"creditsUsed": 123
}
}{
"success": false,
"error": "Each company must include company_name, website_url, or linkedin_url.",
"code": "invalid_company_payload"
}{
"success": false,
"error": "Invalid API key. No key found.",
"code": "invalid_api_key"
}{
"success": false,
"error": "Subscription expired. Please upgrade your subscription: https://www.trysignalbase.com/#pricing",
"code": "subscription_expired"
}{
"success": false,
"error": "Job not found",
"code": "job_not_found"
}{
"success": false,
"error": "CSV enrichment jobs are retrievable for 30 days.",
"code": "job_expired"
}{
"success": false,
"error": "Too many requests. Please upgrade your plan or slow down.",
"code": "rate_limited",
"retryAfter": 60
}{
"success": false,
"error": "An unknown error occurred",
"code": "match_engine_unavailable"
}Endpoints
Get CSV Enrichment Job
Retrieve job status, progress, summary counts, and completed results. Polling is free and returns creditsUsed: 0. Results are paginated with cursor and limit.
GET
/
csv-enrichment
/
{jobId}
Get CSV Enrichment Job
curl --request GET \
--url https://www.trysignalbase.com/api/v2/csv-enrichment/{jobId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://www.trysignalbase.com/api/v2/csv-enrichment/{jobId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://www.trysignalbase.com/api/v2/csv-enrichment/{jobId}', 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/{jobId}",
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://www.trysignalbase.com/api/v2/csv-enrichment/{jobId}"
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://www.trysignalbase.com/api/v2/csv-enrichment/{jobId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.trysignalbase.com/api/v2/csv-enrichment/{jobId}")
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{
"success": true,
"data": {
"jobId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"progress": {
"processed": 1,
"total": 1
},
"submittedAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"summary": {
"totalInputs": 1,
"matched": 1,
"unmatched": 1,
"withFundingSignals": 1,
"withAcquisitionSignals": 1,
"withHiringSignals": 1,
"withJobChangeSignals": 1
},
"results": [
{
"input": {},
"matched": true,
"companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"company": {
"name": "<string>",
"domain": "<string>",
"industry": "<string>",
"country": "<string>",
"employeeCount": 123
},
"signals": {
"funding": [
{}
],
"acquisition": [
{}
],
"hiring": [
{}
],
"job_change": [
{}
],
"investors": [
{}
]
}
}
],
"nextCursor": "<string>",
"error": {
"code": "match_engine_unavailable",
"message": "<string>"
}
},
"meta": {
"endpoint": "<string>",
"creditsUsed": 123
}
}{
"success": false,
"error": "Each company must include company_name, website_url, or linkedin_url.",
"code": "invalid_company_payload"
}{
"success": false,
"error": "Invalid API key. No key found.",
"code": "invalid_api_key"
}{
"success": false,
"error": "Subscription expired. Please upgrade your subscription: https://www.trysignalbase.com/#pricing",
"code": "subscription_expired"
}{
"success": false,
"error": "Job not found",
"code": "job_not_found"
}{
"success": false,
"error": "CSV enrichment jobs are retrievable for 30 days.",
"code": "job_expired"
}{
"success": false,
"error": "Too many requests. Please upgrade your plan or slow down.",
"code": "rate_limited",
"retryAfter": 60
}{
"success": false,
"error": "An unknown error occurred",
"code": "match_engine_unavailable"
}Authorizations
Signalbase API key. Include as Bearer token in the Authorization header.
Path Parameters
Job ID returned by POST /csv-enrichment
Query Parameters
Pagination cursor returned as data.nextCursor
Results per page. Defaults to 50, maximum 100.
Required range:
1 <= x <= 100⌘I
