iScraper

iScraper is a real-time LinkedIn API that provides comprehensive data on people, companies, and searches. We also offer custom LinkedIn datasets on demand, tailored to your specific needs.

Key Features:

  • Real-time data on LinkedIn profiles and companies

  • Detailed search results from LinkedIn

  • Custom datasets available on demand

  • Reliable and up-to-date information

Python Example:

This is a quick example in Python programming language to get you started. For complete integration details, please explore the iScraper API Documentation

import requests

url = 'https://api.proapis.com/iscraper/v4/profile-details'

# Construct headers
api_key = 'YOUR_API_KEY'
headers = {
    'x-api-key': api_key,
    'content-type': 'application/json'
}

# Construct payload
profile_id = 'williamhgates' # Bill Gates' LinkedIn profile ID
payload = {
    'profile_id': profile_id,
    'profile_type': 'personal'
}

response = requests.post(url, headers=headers, json=payload)
data = response.json()

print(data)