cURL
curl --request POST \ --url https://api.example.com/api/v1/scraper/linkedin/profile \ --header 'Content-Type: application/json' \ --data ' { "url": "<string>" } '
{ "error": "Invalid LinkedIn URL format" }
Scrape a LinkedIn profile by URL
Authorization: Bearer YOUR_API_KEY
https://www.linkedin.com/in/username
{ "url": "https://www.linkedin.com/in/username" }
Show Experience Object
Show Education Object
Show Contact Info
{ "id": 1, "url": "https://www.linkedin.com/in/username", "name": "John Doe", "headline": "Senior Software Engineer at Tech Company", "location": "San Francisco, CA", "about": "Passionate software engineer with 10+ years of experience...", "experience": [ { "company": "Tech Company", "title": "Senior Software Engineer", "location": "San Francisco, CA", "start_date": "2020-01", "end_date": "", "description": "Leading backend development for core services...", "is_current": true } ], "education": [ { "school": "University of California", "degree": "Bachelor of Science", "field_of_study": "Computer Science", "start_date": "2008", "end_date": "2012", "grade": "3.8", "description": "" } ], "skills": ["Python", "Go", "JavaScript", "React", "PostgreSQL"], "contact_info": { "email": "[email protected]", "linkedin": "https://www.linkedin.com/in/username" }, "scraped_at": "2025-01-10T12:00:00Z", "created_at": "2025-01-10T12:00:00Z" }