Individual’s social media presence

Endpoint: POST /prospects/linkedin_posts/bulk_enrich

Description

The Bulk Individual’s Social Media Presence Enrichment API retrieves LinkedIn post data for up to 50 prospects in a single request. This endpoint helps in monitoring professional engagement, thought leadership, and outreach personalization.

📌 Key Benefits:

  • Bulk access to recent LinkedIn posts from multiple prospects.
  • Identify trends and professional interests to optimize engagement.
  • Enhance lead nurturing with personalized messaging strategies.

How It Works
  1. Input: Provide up to 50 prospect_id values, obtained from the Match Prospects endpoint.
  2. Processing: The system retrieves public LinkedIn posts associated with the provided prospects.
  3. Output: Returns structured data in the same order as the input, ensuring easy mapping.
Request Schema
FieldTypeDescription
prospect_idsArrayA list of up to 50 unique prospect IDs (Required)
Example Request (cURL)
curl --request POST \
     --url https://api.explorium.ai/v1/prospects/linkedin_posts/bulk_enrich \
     --header 'accept: application/json' \
     --header 'api_key: <your api key>' \
     --header 'content-type: application/json' \
     --data '{
  "prospect_ids": [
    "ee936e451b50c70e068e1b54e106cb89173198c4",
    "d668424ab4f6aaeeeb74248d56b8335383fd522b"
  ]
}'
Example Response
{
  "response_context": {
    "correlation_id": "250fcd74ddb9498281b2bb2404bf71e8",
    "request_status": "success",
    "time_took_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
  • 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.
Bulk LinkedIn Posts Output Signals
Field NameDescriptionData Type
prospect_idUnique identifier of the prospectString
display_nameName of the individual (if available)Optional[str]
post_textContent of the LinkedIn postOptional[str]
days_since_postedNumber of days since the post was publishedOptional[int]
post_urlURL linking to the original LinkedIn postOptional[DataTypes.Url]
number_of_commentsTotal number of comments on the postOptional[int]
number_of_likesTotal number of likes on the postOptional[int]
created_atDate and time when the post was createdOptional[datetime]

Body Params - Try Me Example

prospect_ids: ["ee936e451b50c70e068e1b54e106cb89173198c4", "d668424ab4f6aaeeeb74248d56b8335383fd522b"]
Language
Credentials
Click Try It! to start a request and see the response here!