Businesses Company Ratings By Employees Job
curl --request POST \
--url https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '
{
"list_id": "<string>",
"notifications": {
"email": {
"enabled": true,
"on": []
}
}
}
'import requests
url = "https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job"
payload = {
"list_id": "<string>",
"notifications": { "email": {
"enabled": True,
"on": []
} }
}
headers = {
"api_key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {api_key: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({list_id: '<string>', notifications: {email: {enabled: true, on: []}}})
};
fetch('https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job', 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.explorium.ai/v2/businesses/company_ratings_by_employees/job",
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([
'list_id' => '<string>',
'notifications' => [
'email' => [
'enabled' => true,
'on' => [
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job"
payload := strings.NewReader("{\n \"list_id\": \"<string>\",\n \"notifications\": {\n \"email\": {\n \"enabled\": true,\n \"on\": []\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("api_key", "<api-key>")
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.explorium.ai/v2/businesses/company_ratings_by_employees/job")
.header("api_key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"list_id\": \"<string>\",\n \"notifications\": {\n \"email\": {\n \"enabled\": true,\n \"on\": []\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["api_key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"list_id\": \"<string>\",\n \"notifications\": {\n \"email\": {\n \"enabled\": true,\n \"on\": []\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"job_id": "<string>",
"status": "<string>",
"status_url": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Async
Company ratings by employees (async)
POST
/
v2
/
businesses
/
company_ratings_by_employees
/
job
Businesses Company Ratings By Employees Job
curl --request POST \
--url https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '
{
"list_id": "<string>",
"notifications": {
"email": {
"enabled": true,
"on": []
}
}
}
'import requests
url = "https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job"
payload = {
"list_id": "<string>",
"notifications": { "email": {
"enabled": True,
"on": []
} }
}
headers = {
"api_key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {api_key: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({list_id: '<string>', notifications: {email: {enabled: true, on: []}}})
};
fetch('https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job', 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.explorium.ai/v2/businesses/company_ratings_by_employees/job",
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([
'list_id' => '<string>',
'notifications' => [
'email' => [
'enabled' => true,
'on' => [
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job"
payload := strings.NewReader("{\n \"list_id\": \"<string>\",\n \"notifications\": {\n \"email\": {\n \"enabled\": true,\n \"on\": []\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("api_key", "<api-key>")
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.explorium.ai/v2/businesses/company_ratings_by_employees/job")
.header("api_key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"list_id\": \"<string>\",\n \"notifications\": {\n \"email\": {\n \"enabled\": true,\n \"on\": []\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["api_key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"list_id\": \"<string>\",\n \"notifications\": {\n \"email\": {\n \"enabled\": true,\n \"on\": []\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"job_id": "<string>",
"status": "<string>",
"status_url": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Asynchronous variant. This submits a job through the async job infrastructure — poll job status for progress and results. Input comes from an uploaded dataset (
list_id); limits are 10,000 rows and a 24-hour run time.For the full output signal reference, see the synchronous endpoint.How It Works
How It Works
- Input: Provide a
list_idfrom the dataset upload endpoint. Async endpoints do not accept inline IDs. - Processing: The system retrieves company rating data for all submitted businesses in a single request.
- Output: A structured response with employer reputation and employee satisfaction metrics.
Example Request (cURL)
Example Request (cURL)
Bash
curl --request POST \
--url https://api.explorium.ai/v2/businesses/company_ratings_by_employees/job \
--header 'accept: application/json' \
--header 'api_key: your_api_key_here' \
--header 'content-type: application/json' \
--data '{
"business_ids": [
"8adce3ca1cef0c986b22310e369a0793",
"a34bacf839b923770b2c360eefa26748"
]
}'
Best Practices
Best Practices
- Assess workplace culture and employee satisfaction.
- Compare company ratings across industries.
- Track trends in employer reputation over time.
Body Params - Try Me Example
business_ids: ["8adce3ca1cef0c986b22310e369a0793",
"a34bacf839b923770b2c360eefa26748"]
Authorizations
APIKeyHeaderAPIKeyHeader
Body
application/json
Was this page helpful?