Search Company Finder
curl --request GET \
--url https://api.waterfall.io/v1/search/company \
--header 'x-api-key: <api-key>'import requests
url = "https://api.waterfall.io/v1/search/company"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.waterfall.io/v1/search/company', 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.waterfall.io/v1/search/company",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api.waterfall.io/v1/search/company"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.waterfall.io/v1/search/company")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.waterfall.io/v1/search/company")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "SUCCEEDED",
"start_date": "2024-01-15T12:00:00.000000+00:00",
"stop_date": "2024-01-15T12:00:01.843000+00:00",
"input": {
"task": {
"industries": [
"Software Development"
],
"location_countries": [
"United States"
],
"sizes": [
"201-500"
],
"page_number": 1,
"page_size": 20,
"custom_fields": {},
"job_id": "4fa6b97b-55d0-49fb-924b-16f4c1b6b03e",
"context_id": "4fa6b97b-55d0-49fb-924b-16f4c1b6b03e"
}
},
"output": {
"companies": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"domain": "acme.com",
"name": "Acme Corp",
"website": "acme.com",
"linkedin_id": "acme-corp",
"description": "Acme Corp builds software solutions for modern sales teams.",
"logo_url": "https://media.licdn.com/dms/image/acme-corp-logo.png",
"size": "201-500",
"employees_count": 350,
"industry": "Software Development",
"type": "Privately Held",
"founded": 2010,
"address": "100 Market St, San Francisco, California 94105, US",
"country": "United States",
"linkedin_url": "https://www.linkedin.com/company/acme-corp/",
"linkedin_followers": 12500,
"crunchbase_url": null,
"funding_details": {
"total_funding_rounds": 0,
"total_funding_usd": 0,
"funding_rounds": []
},
"recent_job_posting_count": 12,
"technologies": [
"AWS",
"Snowflake"
]
}
],
"usage": {
"total_usd": 0.05,
"balance_remaining_usd": 99.95,
"persons_count": 0,
"persons_usd": 0,
"phones_count": 0,
"phones_usd": 0,
"companies_count": 1,
"companies_usd": 0.05
}
}
}Search Company
Search Company Finder
Re-fetch a previous Search Company job by job_id.
GET
/
v1
/
search
/
company
Search Company Finder
curl --request GET \
--url https://api.waterfall.io/v1/search/company \
--header 'x-api-key: <api-key>'import requests
url = "https://api.waterfall.io/v1/search/company"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.waterfall.io/v1/search/company', 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.waterfall.io/v1/search/company",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api.waterfall.io/v1/search/company"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.waterfall.io/v1/search/company")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.waterfall.io/v1/search/company")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "SUCCEEDED",
"start_date": "2024-01-15T12:00:00.000000+00:00",
"stop_date": "2024-01-15T12:00:01.843000+00:00",
"input": {
"task": {
"industries": [
"Software Development"
],
"location_countries": [
"United States"
],
"sizes": [
"201-500"
],
"page_number": 1,
"page_size": 20,
"custom_fields": {},
"job_id": "4fa6b97b-55d0-49fb-924b-16f4c1b6b03e",
"context_id": "4fa6b97b-55d0-49fb-924b-16f4c1b6b03e"
}
},
"output": {
"companies": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"domain": "acme.com",
"name": "Acme Corp",
"website": "acme.com",
"linkedin_id": "acme-corp",
"description": "Acme Corp builds software solutions for modern sales teams.",
"logo_url": "https://media.licdn.com/dms/image/acme-corp-logo.png",
"size": "201-500",
"employees_count": 350,
"industry": "Software Development",
"type": "Privately Held",
"founded": 2010,
"address": "100 Market St, San Francisco, California 94105, US",
"country": "United States",
"linkedin_url": "https://www.linkedin.com/company/acme-corp/",
"linkedin_followers": 12500,
"crunchbase_url": null,
"funding_details": {
"total_funding_rounds": 0,
"total_funding_usd": 0,
"funding_rounds": []
},
"recent_job_posting_count": 12,
"technologies": [
"AWS",
"Snowflake"
]
}
],
"usage": {
"total_usd": 0.05,
"balance_remaining_usd": 99.95,
"persons_count": 0,
"persons_usd": 0,
"phones_count": 0,
"phones_usd": 0,
"companies_count": 1,
"companies_usd": 0.05
}
}
}Search Company returns results synchronously from the launcher. Use this endpoint to re-fetch or audit a previous job — not to poll for completion.
What you get
The response mirrors the launcher response exactly:| Field | Description |
|---|---|
input.task | Echo of all request fields plus job_id and context_id |
output.companies | Array of matched companies — same shape as the launcher response |
Authorizations
To access the API, provide your API key in x-api-key.
Query Parameters
The unique job_id you want to query. This value is returned by the corresponding launcher endpoint.
A UUID.
Example:
"7d44db58-5de3-4e92-a2fb-8325d12c2e8b"
Response
Search Company job state, input, and any available output.
Search Company response with job state, input, and optional output.
The status of the job.
Available options:
RUNNING, SUCCEEDED, FAILED, TIMED_OUT, ABORTED Example:
"RUNNING"
A date time in ISO 8601 format.
Example:
"2025-02-05T15:46:35.771751+00:00"
Show child attributes
Show child attributes
Example:
{
"task": {
"industries": ["software development"],
"location_countries": ["United States"],
"sizes": ["201-500"],
"page_number": 1,
"page_size": 20,
"job_id": "7d44db58-5de3-4e92-a2fb-8325d12c2e8b",
"context_id": "7d44db58-5de3-4e92-a2fb-8325d12c2e8b"
}
}
A date time in ISO 8601 format.
Example:
"2025-02-05T15:46:35.771751+00:00"
Search Company output payload.
Show child attributes
Show child attributes
Example:
{ "companies": [] }
⌘I