
Linkedin profile scraper
Pricing
$25.00/month + usage

Linkedin profile scraper
Scrape linkedin profile urls and get complete profile details including basic info, position history, skills, company details, bio, location, etc (⚠️ Warning: Viewing/scraping more than 300-400 profiles per day will result in Linkedin account warning)
2.7 (3)
Pricing
$25.00/month + usage
163
Total users
3.9K
Monthly users
319
Runs succeeded
51%
Issues response
59 days
Last modified
2 months ago
I want to scrap using python
Closed
please give me the sample of cookies data format from apify_client import ApifyClient
Initialize the ApifyClient with your API token
client = ApifyClient('')
Prepare the input for the LinkedIn Profile Scraper actor
input_data = { 'urls': [ 'https://www.linkedin.com/in/debarka-sengupta-3607517', ], # List of LinkedIn profile URLs 'resultsLimit': 10, # Adjust the number of results as needed 'includePosts': True, # Include posts and likes in the scrape 'includeJobs': True, # Include job information in the scrape 'cookie': ['AQEDARIW2N0DiI-uAAABkKuxYH8AAAGQz73kf1YAqqDCezggy3flQLzc7S8xqzDC3cM0qxOjYqWoZStUqUfuL8UCizVuOgsCAQmW09P1lsOTQs1_kRA262Dy1upuSbxUy5TI15dBzCPVbYRH-TbmbrKh'], # Replace with your desired cookie value }
Run the actor and wait for it to finish
run = client.actor('curious_coder/linkedin-profile-scraper').call(run_input=input_data)
Fetch and print actor results
results = client.dataset(run['defaultDatasetId']).list_items().items for item in results: print(item)
Stuti_Kumari
from apify_client import ApifyClient
Initialize the ApifyClient with your API token
client = ApifyClient('')
Prepare the input for the LinkedIn Profile Scraper actor
input_data = { 'urls': [ 'https://www.linkedin.com/in/debarka-sengupta-3607517', ], # List of LinkedIn profile URLs 'resultsLimit': 10, # Adjust the number of results as needed 'includePosts': True, # Include posts and likes in the scrape 'includeJobs': True, # Include job information in the scrape 'cookie': ['AQEDARIW2N0DiI-uAAABkKuxYH8AAAGQz73kf1YAqqDCezggy3flQLzc7S8xqzDC3cM0qxOjYqWoZStUqUfuL8UCizVuOgsCAQmW09P1lsOTQs1_kRA262Dy1upuSbxUy5TI15dBzCPVbYRH-TbmbrKh'], # Replace with your desired cookie value }
Run the actor and wait for it to finish
run = client.actor('curious_coder/linkedin-profile-scraper').call(run_input=input_data)
Fetch and print actor results
results = client.dataset(run['defaultDatasetId']).list_items().items for item in results: print(item)

In order to quickly identify the reason of your issue, I need to inspect your run.
Please share the URL of the run where you faced this issue. You can find your runs on this page: https://console.apify.com/actors/runs
Stuti_Kumari

Sorry, I won't be able to help with external code.