Run LinkedIn Company Search
curl --request POST \
--url https://api.neuralverge.ai/functions/v1/run-linkedin-company-search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"searchQuery": "AI companies",
"companySize": [
"51-200"
],
"industryIds": [
"Software"
],
"locations": [
"Amsterdam"
],
"maxItems": 5,
"scraperMode": "short",
"startPage": 1
}
'import requests
url = "https://api.neuralverge.ai/functions/v1/run-linkedin-company-search"
payload = {
"searchQuery": "AI companies",
"companySize": ["51-200"],
"industryIds": ["Software"],
"locations": ["Amsterdam"],
"maxItems": 5,
"scraperMode": "short",
"startPage": 1
}
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({
searchQuery: 'AI companies',
companySize: ['51-200'],
industryIds: ['Software'],
locations: ['Amsterdam'],
maxItems: 5,
scraperMode: 'short',
startPage: 1
})
};
fetch('https://api.neuralverge.ai/functions/v1/run-linkedin-company-search', 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.neuralverge.ai/functions/v1/run-linkedin-company-search",
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([
'searchQuery' => 'AI companies',
'companySize' => [
'51-200'
],
'industryIds' => [
'Software'
],
'locations' => [
'Amsterdam'
],
'maxItems' => 5,
'scraperMode' => 'short',
'startPage' => 1
]),
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://api.neuralverge.ai/functions/v1/run-linkedin-company-search"
payload := strings.NewReader("{\n \"searchQuery\": \"AI companies\",\n \"companySize\": [\n \"51-200\"\n ],\n \"industryIds\": [\n \"Software\"\n ],\n \"locations\": [\n \"Amsterdam\"\n ],\n \"maxItems\": 5,\n \"scraperMode\": \"short\",\n \"startPage\": 1\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://api.neuralverge.ai/functions/v1/run-linkedin-company-search")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"searchQuery\": \"AI companies\",\n \"companySize\": [\n \"51-200\"\n ],\n \"industryIds\": [\n \"Software\"\n ],\n \"locations\": [\n \"Amsterdam\"\n ],\n \"maxItems\": 5,\n \"scraperMode\": \"short\",\n \"startPage\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.neuralverge.ai/functions/v1/run-linkedin-company-search")
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 \"searchQuery\": \"AI companies\",\n \"companySize\": [\n \"51-200\"\n ],\n \"industryIds\": [\n \"Software\"\n ],\n \"locations\": [\n \"Amsterdam\"\n ],\n \"maxItems\": 5,\n \"scraperMode\": \"short\",\n \"startPage\": 1\n}"
response = http.request(request)
puts response.read_body{
"session_id": "33333333-3333-3333-3333-333333333333",
"kind": "linkedin_company_search",
"companySize": [
"51-200"
],
"industryIds": [
"Software Development"
],
"locations": [
"San Francisco Bay Area"
],
"maxItems": 2,
"scraperMode": "short",
"searchQuery": "AI safety companies",
"startPage": 1,
"human": "# LinkedIn company search\n\n- **Results returned:** 2\n\n### OpenAI\n\n- **Profile URL:** https://www.linkedin.com/company/openai/\n- **Industry:** Research Services\n- **Location:** San Francisco Bay Area\n- **Followers:** 3200000\n- **Summary:** AI research and deployment company.\n\n### Anthropic\n\n- **Profile URL:** https://www.linkedin.com/company/anthropicresearch/\n- **Industry:** Software Development\n- **Location:** San Francisco, California\n- **Followers:** 450000\n- **Summary:** Building reliable, interpretable, and steerable AI systems.",
"machine": {
"total_items": 2,
"first_item": {
"name": "OpenAI",
"url": "https://www.linkedin.com/company/openai/",
"industry": "Research Services",
"headquarters": "San Francisco Bay Area",
"followers": "3200000",
"description": "AI research and deployment company."
},
"items": [
{
"name": "OpenAI",
"url": "https://www.linkedin.com/company/openai/",
"industry": "Research Services"
},
{
"name": "Anthropic",
"url": "https://www.linkedin.com/company/anthropicresearch/",
"industry": "Software Development"
}
]
},
"points_per_company": 5,
"total_points": 10
}Data Sources
Run LinkedIn Company Search
Searches LinkedIn companies by query and optional filters.
POST
/
functions
/
v1
/
run-linkedin-company-search
Run LinkedIn Company Search
curl --request POST \
--url https://api.neuralverge.ai/functions/v1/run-linkedin-company-search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"searchQuery": "AI companies",
"companySize": [
"51-200"
],
"industryIds": [
"Software"
],
"locations": [
"Amsterdam"
],
"maxItems": 5,
"scraperMode": "short",
"startPage": 1
}
'import requests
url = "https://api.neuralverge.ai/functions/v1/run-linkedin-company-search"
payload = {
"searchQuery": "AI companies",
"companySize": ["51-200"],
"industryIds": ["Software"],
"locations": ["Amsterdam"],
"maxItems": 5,
"scraperMode": "short",
"startPage": 1
}
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({
searchQuery: 'AI companies',
companySize: ['51-200'],
industryIds: ['Software'],
locations: ['Amsterdam'],
maxItems: 5,
scraperMode: 'short',
startPage: 1
})
};
fetch('https://api.neuralverge.ai/functions/v1/run-linkedin-company-search', 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.neuralverge.ai/functions/v1/run-linkedin-company-search",
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([
'searchQuery' => 'AI companies',
'companySize' => [
'51-200'
],
'industryIds' => [
'Software'
],
'locations' => [
'Amsterdam'
],
'maxItems' => 5,
'scraperMode' => 'short',
'startPage' => 1
]),
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://api.neuralverge.ai/functions/v1/run-linkedin-company-search"
payload := strings.NewReader("{\n \"searchQuery\": \"AI companies\",\n \"companySize\": [\n \"51-200\"\n ],\n \"industryIds\": [\n \"Software\"\n ],\n \"locations\": [\n \"Amsterdam\"\n ],\n \"maxItems\": 5,\n \"scraperMode\": \"short\",\n \"startPage\": 1\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://api.neuralverge.ai/functions/v1/run-linkedin-company-search")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"searchQuery\": \"AI companies\",\n \"companySize\": [\n \"51-200\"\n ],\n \"industryIds\": [\n \"Software\"\n ],\n \"locations\": [\n \"Amsterdam\"\n ],\n \"maxItems\": 5,\n \"scraperMode\": \"short\",\n \"startPage\": 1\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.neuralverge.ai/functions/v1/run-linkedin-company-search")
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 \"searchQuery\": \"AI companies\",\n \"companySize\": [\n \"51-200\"\n ],\n \"industryIds\": [\n \"Software\"\n ],\n \"locations\": [\n \"Amsterdam\"\n ],\n \"maxItems\": 5,\n \"scraperMode\": \"short\",\n \"startPage\": 1\n}"
response = http.request(request)
puts response.read_body{
"session_id": "33333333-3333-3333-3333-333333333333",
"kind": "linkedin_company_search",
"companySize": [
"51-200"
],
"industryIds": [
"Software Development"
],
"locations": [
"San Francisco Bay Area"
],
"maxItems": 2,
"scraperMode": "short",
"searchQuery": "AI safety companies",
"startPage": 1,
"human": "# LinkedIn company search\n\n- **Results returned:** 2\n\n### OpenAI\n\n- **Profile URL:** https://www.linkedin.com/company/openai/\n- **Industry:** Research Services\n- **Location:** San Francisco Bay Area\n- **Followers:** 3200000\n- **Summary:** AI research and deployment company.\n\n### Anthropic\n\n- **Profile URL:** https://www.linkedin.com/company/anthropicresearch/\n- **Industry:** Software Development\n- **Location:** San Francisco, California\n- **Followers:** 450000\n- **Summary:** Building reliable, interpretable, and steerable AI systems.",
"machine": {
"total_items": 2,
"first_item": {
"name": "OpenAI",
"url": "https://www.linkedin.com/company/openai/",
"industry": "Research Services",
"headquarters": "San Francisco Bay Area",
"followers": "3200000",
"description": "AI research and deployment company."
},
"items": [
{
"name": "OpenAI",
"url": "https://www.linkedin.com/company/openai/",
"industry": "Research Services"
},
{
"name": "Anthropic",
"url": "https://www.linkedin.com/company/anthropicresearch/",
"industry": "Software Development"
}
]
},
"points_per_company": 5,
"total_points": 10
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
Search completed.
⌘I