curl --request GET \
--url https://api.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://api.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id}")
.header("Authorization", "Bearer <token>")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id}",
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.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id}"
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))
}{
"company_list_id": "018f23b7-92bb-7c64-a3d4-1ba53b8ad971",
"name": "US SaaS companies",
"provider_id": "fullenrich",
"company_source_id": "fullenrich_company_search",
"status": "PENDING",
"requested_count": 10000,
"company_count": 8742,
"timestamp_created": "2026-07-30T00:00:00.000Z",
"timestamp_updated": "2026-07-30T00:00:00.000Z",
"credit_cost_per_saved_record": 1,
"terminal_reason": "NO_RESULTS",
"saved_count": 9100,
"credits_charged": 10000,
"filters": {}
}{
"statusCode": 401,
"error": "Unauthorized",
"message": "Missing Authorization header"
}{
"statusCode": 402,
"error": "Payment Required",
"message": "Workspace does not have an active paid plan"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found"
}{
"statusCode": 429,
"error": "Too Many Requests",
"message": "Rate limit exceeded"
}Get company-list status
Requires one of the following scopes: supersearch_enrichments:read, supersearch_enrichments:all, all:read, all:all
curl --request GET \
--url https://api.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://api.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id}")
.header("Authorization", "Bearer <token>")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id}",
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.instantly.ai/api/v2/supersearch-enrichment/company-lists/{company_list_id}"
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))
}{
"company_list_id": "018f23b7-92bb-7c64-a3d4-1ba53b8ad971",
"name": "US SaaS companies",
"provider_id": "fullenrich",
"company_source_id": "fullenrich_company_search",
"status": "PENDING",
"requested_count": 10000,
"company_count": 8742,
"timestamp_created": "2026-07-30T00:00:00.000Z",
"timestamp_updated": "2026-07-30T00:00:00.000Z",
"credit_cost_per_saved_record": 1,
"terminal_reason": "NO_RESULTS",
"saved_count": 9100,
"credits_charged": 10000,
"filters": {}
}{
"statusCode": 401,
"error": "Unauthorized",
"message": "Missing Authorization header"
}{
"statusCode": 402,
"error": "Payment Required",
"message": "Workspace does not have an active paid plan"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found"
}{
"statusCode": 429,
"error": "Too Many Requests",
"message": "Rate limit exceeded"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
"018f23b7-92bb-7c64-a3d4-1ba53b8ad971"
Response
Default Response
"018f23b7-92bb-7c64-a3d4-1ba53b8ad971"
"US SaaS companies"
"fullenrich"
"fullenrich_company_search"
PENDING, IN_PROGRESS, COMPLETED, FAILED "PENDING"
10000
8742
"2026-07-30T00:00:00.000Z"
"2026-07-30T00:00:00.000Z"
1
MAX_COMPANIES_REACHED, PROVIDER_EXHAUSTED, NO_RESULTS, PROVIDER_ERROR, INTERNAL_ERROR, OUT_OF_CREDITS, UPLOAD_ABORTED "NO_RESULTS"
9100
10000
Filters the list was built with, keyed by filter key. Since INS-9685 an entry of a filter backed by a remote catalog — company_technology_slug_or, industry_or — is returned as { value, label } instead of a plain string, so a saved list can render the human name without a provider call. Entries stored before that change are still returned as plain strings, and both forms are accepted on create.