Linkedin User Profile Scraper API

API Endpoint Specifications

  • Endpoint Path: /api/1/linkedinScraperAPI
  • Type of Data: JSON & 20/minute
  • Data Source: Linkedin
  • Request Limit: 500 request/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Linkedin User Profile Scraper API Endpoint Basic Info

API Endpoint Path

required

Linkedin User Profile Scraper API

api/1/linkedinProfileScraper


Call Method

Required

POST

Type of Data Return

JSON

Output structured JSON data on Linkedin user profile


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Free and paid subscription APIs are both available: /api/1/linkedinProfileScraper, and accessible to on-site APP on /app/1/linkedinScraper as well

companyname

required

Input the target company name in English

title

required

Enter the specific position title



Linkedin User Profile Scraper API

api/1/linkedinProfileScraper


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/linkedinProfileScraper"

## Required Arguments & Parameters ##

token = "your buyfromlo token"
companyname = "a company name"
title="person job title"

data={"companyname": companyname, "title": title}
headers={"Authorization": "Bearer " + token}

## Call the api ##
response = requests.post(apiendpoint, json=data, headers=headers)
print(response.status_code)
print(response.json())
                        

JSON Response Sample


{
    'Prospect Profile': " " (string),
"Linkedin Profile Link": ""(string),
    'Module': " " (string),
}