Prospects Linkedin Posts Job
curl --request POST \
--url https://api.explorium.ai/v2/prospects/linkedin_posts/job \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '
{
"list_id": "<string>",
"notifications": {
"email": {
"enabled": true,
"on": []
}
},
"parameters": {}
}
'import requests
url = "https://api.explorium.ai/v2/prospects/linkedin_posts/job"
payload = {
"list_id": "<string>",
"notifications": { "email": {
"enabled": True,
"on": []
} },
"parameters": {}
}
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: []}},
parameters: {}
})
};
fetch('https://api.explorium.ai/v2/prospects/linkedin_posts/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/prospects/linkedin_posts/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' => [
]
]
],
'parameters' => [
]
]),
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/prospects/linkedin_posts/job"
payload := strings.NewReader("{\n \"list_id\": \"<string>\",\n \"notifications\": {\n \"email\": {\n \"enabled\": true,\n \"on\": []\n }\n },\n \"parameters\": {}\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/prospects/linkedin_posts/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 \"parameters\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.explorium.ai/v2/prospects/linkedin_posts/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 \"parameters\": {}\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
LinkedIn posts (async)
POST
/
v2
/
prospects
/
linkedin_posts
/
job
Prospects Linkedin Posts Job
curl --request POST \
--url https://api.explorium.ai/v2/prospects/linkedin_posts/job \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '
{
"list_id": "<string>",
"notifications": {
"email": {
"enabled": true,
"on": []
}
},
"parameters": {}
}
'import requests
url = "https://api.explorium.ai/v2/prospects/linkedin_posts/job"
payload = {
"list_id": "<string>",
"notifications": { "email": {
"enabled": True,
"on": []
} },
"parameters": {}
}
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: []}},
parameters: {}
})
};
fetch('https://api.explorium.ai/v2/prospects/linkedin_posts/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/prospects/linkedin_posts/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' => [
]
]
],
'parameters' => [
]
]),
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/prospects/linkedin_posts/job"
payload := strings.NewReader("{\n \"list_id\": \"<string>\",\n \"notifications\": {\n \"email\": {\n \"enabled\": true,\n \"on\": []\n }\n },\n \"parameters\": {}\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/prospects/linkedin_posts/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 \"parameters\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.explorium.ai/v2/prospects/linkedin_posts/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 \"parameters\": {}\n}"
response = http.request(request)
puts response.read_body{
"job_id": "<string>",
"status": "<string>",
"status_url": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Description
The Asynchronous Individual’s Social Media Presence Enrichment API retrieves LinkedIn® post data for up to 10,000 prospects in a single request. This endpoint helps in monitoring professional engagement, thought leadership, and outreach personalization. Key Benefits:- Asynchronous access to recent LinkedIn® posts from multiple prospects.
- Identify trends and professional interests to optimize engagement.
- Enhance lead nurturing with personalized messaging strategies.
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 up to 10,000
prospect_idvalues, obtained from the Match Prospects endpoint. - Processing: The system retrieves public LinkedIn® posts associated with the provided prospects.
- Output: Returns structured data in the same order as the input, ensuring easy mapping.
Request Schema
Request Schema
| Field | Type | Description |
|---|---|---|
list_id | String | Identifier of an uploaded entity ID dataset (Required) |
Example Request (cURL)
Example Request (cURL)
Bash
curl --request POST \
--url https://api.explorium.ai/v2/prospects/linkedin_posts/job \
--header 'accept: application/json' \
--header 'api_key: <your api key>' \
--header 'content-type: application/json' \
--data '{
"prospect_ids": [
"ee936e451b50c70e068e1b54e106cb89173198c4",
"57f9e5dac64d31d80e6e9432fe2c500d0bba2c01"
]
}'
Example Response
Example Response
JSON
{
"response_context": {
"correlation_id": "250fcd74ddb9498281b2bb2404bf71e8",
"request_status": "success",
"time_taken_in_seconds": 29.91
},
"data": [
{
"prospect_id": "ee936e451b50c70e068e1b54e106cb89173198c4",
"data": {
"display_name": null,
"post_text": "Great to see so many customers and partners unlocking the full ROI of AI.",
"days_since_posted": 28,
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7293486979298578433",
"number_of_comments": 122,
"number_of_likes": 2875,
"created_at": "2025-02-06T00:00:00"
}
},
{
"prospect_id": "ee936e451b50c70e068e1b54e106cb89173198c4",
"data": {
"display_name": null,
"post_text": "Today in Nature Magazine: Our MatterGen model represents a paradigm shift in materials design...",
"days_since_posted": 46,
"post_url": "https://www.linkedin.com/feed/update/urn:li:activity:7286992519978958848",
"number_of_comments": 254,
"number_of_likes": 6115,
"created_at": "2025-01-19T00:00:00"
}
},
...
],
"total_results": 20
}
Best Practices
Best Practices
- Use valid prospect IDs to ensure accurate enrichment results.
- Monitor recent LinkedIn® activity to identify engagement opportunities.
- Integrate enriched data into CRM systems for sales intelligence.
- Leverage insights to craft personalized outreach campaigns.
Asynchronous LinkedIn® posts Output Signals
Asynchronous LinkedIn® posts Output Signals
| Signal | API Name | Description | Data Type Final |
|---|---|---|---|
| created_at | Time of posting | Timestamp of when the individual’s post was published. | datetime |
| number_of_likes | Number of post likes | Number of likes the individual’s post received by time of collection. | integer |
| post_url | LinkedIn® post URL | URL to the LinkedIn® post published by individual. | url |
| number_of_comments | Number of post comments | Number of comments on the individual’s post by time of collection. | integer |
| days_since_posted | Days since post | Number of days since the post was published by the individual. | integer |
| post_text | Post text content | Text content of the LinkedIn® post published by individual. | string |
Body Params - Try Me Example
prospect_ids: ["ee936e451b50c70e068e1b54e106cb89173198c4", "57f9e5dac64d31d80e6e9432fe2c500d0bba2c01"]
Authorizations
APIKeyHeaderAPIKeyHeader
Body
application/json
Was this page helpful?